body {
  background: #A7D2CB;
}

.center {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.center .first {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.center .first h1 {
  color: #F2D388;
}

.center .first h1::after {
  content: "";
  width: 5px;
  height: 25px;
  background: #F2D388;
  display: inline-block;
  animation: cursor-blink 1.5s infinite;
}

.center .first a {
  color: #C98474;
  text-decoration: underline 2px;
}

@keyframes cursor-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*# sourceMappingURL=style.css.map */
