html {
  box-sizing: border-box;
  color: #fff;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', sans-serif;
  min-height: 100%;
  background:
    linear-gradient(45deg, rgb(44, 5, 48) 0%, hsla(340, 100%, 55%, 0) 70%),
    linear-gradient(135deg, rgba(33, 106, 124, 0.712) 10%, hsla(225, 95%, 50%, 0) 80%),
    linear-gradient(225deg, rgb(4, 77, 110) 10%, hsla(140, 90%, 50%, 0) 80%),
    linear-gradient(315deg, rgb(15, 13, 109) 100%, hsla(35, 95%, 55%, 0) 70%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


h1 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
  font-size: 2.5rem;
  font-family: 'Lobster';
}

h2 {
  text-align: center;
  /* margin-top: 3rem; */
  text-transform: uppercase;
  margin: 1rem auto;
}

main {
  background-color: rgba(26, 22, 22, 0.178);
  width: 95vw;
  margin: auto;
  height: 100%;
  padding: 30px 20px 20px 20px;
  transition: all .2s;

}

li a {
  text-decoration: none;
  color: #fff;
  padding: 1rem 0;
  border: 1px solid #fff;
  border-radius: 10px;
  display: block;
  width: 80%;
  margin: 0 auto;
  transition: all .8s;
}

li a:hover {
  background-color: #0b405f52;
  border: 1px solid rgb(10, 107, 102);
}

li {
  text-align: center;
  margin: 1rem 0;

}

@media (min-width:576px) {
  main {
    max-width: 70vw;
    padding: 50px;
    padding-bottom: 2rem;
  }

  .input input[type="text"] {
    margin-right: 3rem;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (min-width:992px) {
  main {
    max-width: 50vw;
  }
}





/*! Footer */

article,
footer {
  line-height: 1.4rem;
}

footer a {
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
}

footer {
  letter-spacing: 2.5rem;
  line-height: 3rem !important;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: rgba(31, 54, 61, 0.377);
  width: 100%;
  padding-top: 2rem;
  opacity: 0.9;
  margin-top: auto;
  align-content: flex-end;
  height: 150px;
}

footer p,
footer p a {
  margin-top: 20px;
  letter-spacing: 0;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  color: #fff;
}

footer p span {
  font-size: 1.2rem;
  vertical-align: -3px;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

footer a:hover {
  color: #d37a14;
  display: block;
  animation: pulse 1s ease-in;

}

footer p a:hover {
  display: inline;
  color: #50d662;
  animation: none;
}