* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.container:first-child {
  color: white;
}

header {
  display: flex;
  justify-content: flex-start;
  word-wrap: break-word;
  word-break: break-all;
  align-items: center;
}

header img:hover {
  animation: himg .5s infinite alternate;
  transition: .5s;
}

header h1 {
  font-size: 500%;
  text-shadow: black 10px 5px 10px;
  cursor: default;
  color: #a5b8f7;
  animation: jump 1s infinite alternate;
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

@keyframes himg {
  50% {
    rotate: 2deg;
  }
  100% {
    rotate: -4deg;
  }
}

@media only screen and (max-width: 500px) {
  .body header {
    font-size: 1rem;
    display: block;
  }
  .body header h1 {
    font-size: 3rem;
  }
  .body main .row .col {
    flex: none;
  }
}

body {
  background-image: linear-gradient(86.3deg, #0077b6 3.6%, #081844 87.6%);
}

nav {
  text-align: center;
}

nav .btn-alert {
  background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

nav .btn-alert:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

nav button {
  background-image: linear-gradient(to right, #1A2980 0%, #26D0CE 51%, #1A2980 100%);
  margin: 10px;
  font-weight: bolder;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

nav button:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style-type: none;
  font-weight: bolder;
  font-size: 130%;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

nav ul li {
  color: #081844;
  background-color: #a5b8f7;
  cursor: pointer;
  margin: 5px;
  border-radius: 10px;
  border: #081844 3px solid;
  padding: 1rem;
  transition: .5s;
  box-shadow: 10px 5px 10px black;
}

nav ul li:hover {
  background-color: #081844;
  color: #a5b8f7;
  transition: .2s;
  box-shadow: none;
  border: 3px solid #a5b8f7;
}

main {
  animation: none;
  padding: 1rem;
}

main option[selected] {
  font-weight: bolder;
}

@keyframes showMe {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

main .row .col select {
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 2px;
}

main #faq {
  color: white;
  text-align: center;
}

main #faq a {
  text-decoration: none;
  color: #a5b8f7;
}

main #faq a:hover {
  text-decoration: underline;
}

main #faq p {
  font-weight: bolder;
  margin-top: 5px;
}
