@font-face {
  font-family: cera;
  src: url('Cera\ Pro\ Light.otf');
}
* {
  padding: 0;
  margin: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  height: -webkit-fill-available;
}

body {
  font-family: cera;
  width: 100vw;
  height: 100vh;
  max-height: -webkit-fill-available;
}

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  width: 100%;
  height: 100%;
  padding: 48px;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  justify-content: space-around;
  align-items: center;
  border: 6px solid #fff;
  border-radius: 42px;
  padding: 4rem 2rem;
}

img.logo {
  width: 143px;
  /* margin-bottom: 8rem; */
}
h4 {
  margin-bottom: 4rem;
}
a.button,
h4 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
}
a.button {
  margin-top: 4rem;
  box-sizing: border-box;
  text-decoration: none;
  border: 3px solid #ffffff;
  border-radius: 62px;
  padding: 20px 32px;
}
a.button:hover {
  border: 5px solid #ffffff;
  font-weight: 700;
  padding: 18px 30px;
}
@media (max-width: 600px) {
  .container {
    padding: 24px;
  }
  .content {
    /* justify-content: space-between; */
    padding: 2rem 1rem;
  }
  /* a.button,
  img.logo {
    margin-bottom: 0;
    margin-top: 0;
  }
  h4 {
    margin-bottom: 2rem;
  } */
  /* a.button {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
  } */
}
