body {
  text-align: center;
  font-family: "Lexend Deca", sans-serif;
}

h1 {
  font-size: 1.5rem;
  letter-spacing: -1px;
}

img {
  padding: 10px;
  width: 180px;
  height: 252px;
  animation-delay: 250ms;
  margin: 0 auto;
  margin-bottom: 30px;
}

.buttonStyle {
  margin: 0 auto;
  font-size: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-weight: bold;
  color: #2d3748;
  background-color: #e2e8f0;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  margin-bottom: 30px;
  display: block;
}

#cardButton:hover {
  background-color: #cbd5e0;
}

#resetButton:hover {
  background-color: #cbd5e0;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.12rem #0069d4;
}

.space {
  padding: 15px;
}

form {
  margin-bottom: 30px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

footer {
  margin: 50px;
}
