@import url("https://fonts.googleapis.com/css2?family=AR+One+Sans:wght@400..700&display=swap");
body {
  margin: 0;
  padding: 0;
  background-color: #fbf5e5;
  color: #333;
  font-family: "AR One Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "ARRR" 10;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  white-space: nowrap;
}
nav a {
  height: 25px;
  position: relative;
  text-decoration: none;
  color: #333;
  overflow: hidden;
  padding: 10px;
  transition: 0.25s;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  height: 100px;
  z-index: -1;
  display: block;
  background-color: #c50505;
  transition: 0.25s;
}
nav a:hover {
  color: #fbf5e5;
}
nav a:hover::after {
  bottom: 0;
}
nav img {
  height: 50px;
}
nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  margin: 0 10px;
}

@keyframes shake {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(10px, 3px);
  }
  50% {
    transform: translate(-10px, -3px);
  }
  75% {
    transform: translate(10px, 3px);
  }
  100% {
    transform: translate(0);
  }
}
.shake {
  animation: shake 0.5s;
}

#search {
  background: linear-gradient(to right, #f70606, #930404);
  padding: 15vh 0;
  color: #fbf5e5;
  text-align: center;
}
#search h1 {
  font-size: 3em;
  margin: 0;
}
#search form {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
#search form input {
  border: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  font-size: 1.5em;
  margin: 0;
  padding: 5px 15px;
}
#search form button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 1.5em;
  color: #fbf5e5;
  cursor: pointer;
  margin: 0;
  padding: 5px 15px;
  color: #333;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
main section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  color: #333;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  text-align: justify;
}
main section.right {
  flex-direction: row-reverse;
}
main section.mobile {
  flex-direction: column;
}
main section h2, main section p {
  margin: 0;
}
main section img, main section div {
  width: 45%;
}
main section h1 {
  text-align: center;
}
main section div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}/*# sourceMappingURL=index.css.map */