@charset "UTF-8";
body {
  font-family: -apple-system, helvetica, arial;
  font-weight: bold;
  font-size: 6vmin;
  transition: font-size 0.1s linear;
}

.txt {
  font-family: -apple-system, helvetica, arial;
  font-size: 2vmin;
  color: #888;
  transition: font-size 0.1s linear;
  margin-bottom: 20px;
}
.text {
  font-family: -apple-system, helvetica, arial;
  font-size: 3vmin;
  color: #888;
  transition: font-size 0.1s linear;
  margin-bottom: 20px;
}

a {color: #888;}
a:hover {color: #000;}


.♥️ {
  margin-left: -0.12em;
  display: inline-block;
  -webkit-animation: throb 1.5s infinite;
          animation: throb 1.5s infinite;
}

@-webkit-keyframes throb {
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.4);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes throb {
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.4);
  }
  50% {
    transform: scale(1);
  }
}
:root {
  height: 100%;
  display: flex;
}

:root > * {
  margin: auto;
  text-align: center;
}
.fade-in-text {
  display: inline-block;
  animation: fadeIn linear 7s;
  -webkit-animation: fadeIn linear 7s;
  -moz-animation: fadeIn linear 7s;
  -o-animation: fadeIn linear 7s;
  -ms-animation: fadeIn linear 7s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.blink_me {
  animation: blinker 2.4s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.typewriter {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #b61010; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: 
    typing 3.5s steps(30, end),
    blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #b61010 }
}