@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap");
* {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: #1f2632;
}

main {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .card {
  background-color: #323a49;
  max-width: 400px;
  margin: auto;
  border-radius: 10px;
  padding: 50px 60px;
  text-align: center;
  position: relative;
}

main .card h1 {
  font-size: 28px;
  color: #cee3e9;
}

main .card p {
  color: #52ffa8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

main .card .divider {
  margin-top: 10px;
  width: 100%;
}

main .card #btn {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 20px;
  padding: 0;
  background-color: #52ffa8;
  border: none;
  position: absolute;
  left: 50%;
  bottom: 0%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

main .card #btn:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 30px 5px #52ffa8;
          box-shadow: 0px 0px 30px 5px #52ffa8;
}

main .card #btn img {
  width: 23px;
}

main .attribution {
  margin-top: 50px;
  font-size: 11px;
  text-align: center;
  color: #cee3e9;
}

main .attribution a {
  color: #52ffa8;
}

@media screen and (max-width: 768px) {
  main {
    width: 90%;
  }
}
/*# sourceMappingURL=style.css.map */