/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
    font-family: Klint;
    src: url('../fonts/KlintPro-Regular.ttf');
    font-weight: normal;
  }

@font-face {
  font-family: Klint;
  src: url('../fonts/KlintPro-Bold.ttf');
  font-weight: bold;
}

@font-face {
    font-family: Nifty;
    src: url('../fonts/Nifty.otf');
    font-weight: normal;
}

@keyframes pulse {
    from { transform: scale(1); }
    50% { transform: scale(0.85); }
    to { transform: scale(1.1); }
  }

@keyframes typing {
  from { 
      width: 0; 
    }
    40%{
        width: 100%;
    }
  to { width: 100%; }
}
@keyframes typing2 {
    from { 
        width: 0; 
      }
      14%{
          width: 0;
      }

      50%{
          width: 100%;
      }
    to { width: 100%; }
  }
  @keyframes typing3 {
    from { 
        width: 0; 
      }
      36%{
          width: 0;
      }

      80%{
          width: 100%;
      }
    to { width: 100%; }
  }

*{
    box-sizing: border-box;
}

html, body{
    height: 600px;
    width: 300px;
    max-height: 600px;
    max-width: 300px;
    overflow: hidden;
}

.body{
    padding: 10px 18px;
    background: #84CFED;
    height: 100%;
    width: 100%;
    font-family: Klint;
}

.body h1{
    font-weight: normal;
    font-size: 29px;
    line-height: 33px;
    color: #192A67;
    text-align: left;
    padding-bottom: 30px;
}

.header{
    position: relative;
}

.header img{
    width: 100px;
    position: absolute;
    right: -15px;
    top: -5px;
    padding: 0;
}
.nifty{
    font-family: Nifty;
    font-size: 27px;
    line-height: 38px;
}

.nifty p{
    animation: typing 7s infinite ease-out;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: -10px;
}

.nifty p:nth-child(2){
    animation: typing2 7s infinite ease-out;
}
.nifty p:nth-child(3){
    animation: typing3 7s infinite ease-out;
}

.light{
    width: 100%;
    padding: 15px 0 25px 0;
}

.scribble{
    width: 227px;
    padding-top: 40px;
}

.btn{
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: #FF6418;
    margin: 0 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-top: -120px;


    color: #FFF;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation: pulse 1s ease-in-out infinite alternate;
    -webkit-font-smoothing: subpixel-antialiased;

}

.btn div{
    transform: rotate(15deg);
}