@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Pacifico", cursive;
  background-color: black;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

@keyframes cta {
  0% {
    font-size: 20px;
  }

  100% {
    font-size: 30px;
  }
}

#cta {
  color: #ff0080;
  animation: cta 2s infinite alternate;
  text-decoration: none;
}
