@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;
}

:root {
  --gridCollumns: auto auto auto;
}

#search {
  background: linear-gradient(to right, #f70606, #930404);
  padding: 15px 0;
  color: #fbf5e5;
  text-align: center;
}
#search h1 {
  font-size: 2em;
  margin: 0;
}

main {
  max-width: 3000px;
  margin: 0 auto;
}
main #searchbar {
  margin: 10px 0;
}
main #searchbar form {
  display: flex;
  justify-content: center;
  width: 80%;
  height: 50px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  outline: 2px solid #c50505;
}
main #searchbar form input {
  display: block;
  border: none;
  margin: 0;
  padding: 10px;
  padding-left: 20px;
  width: calc(100% - 75px);
  height: 30px;
  font-size: 16px;
}
main #searchbar form button {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  width: 75px;
  height: 50px;
  font-size: 20px;
}
main #mainSection {
  display: flex;
  margin: 0 10px;
}
main #mainSection #searchResults {
  width: 100%;
}
main #mainSection #searchResults header {
  width: 100%;
  position: relative;
}
main #mainSection #searchResults header > h1 {
  width: 70%;
  display: block;
  position: relative;
  left: 50%;
  translate: -50%;
  transform: skewX(-10deg);
  background: linear-gradient(to right, #f70606, #930404);
  color: #fbf5e5;
  text-align: center;
  display: block;
  padding: 10px 0;
  margin: 10px 0 20px 0;
  font-size: 2.5em;
}
main #mainSection #searchResults #results {
  display: grid;
  grid-template-columns: var(--gridCollumns);
  gap: 10px;
}
main #mainSection #searchResults #results.pc {
  flex-direction: row;
}
main #mainSection #searchResults #results.mobile {
  flex-direction: column;
}
main #mainSection #searchResults #results .result {
  justify-content: space-around;
  color: #333;
  margin: 10px;
  padding: 10px;
  background-color: #faf2dc;
  border-width: 2px;
  border-style: solid;
  border-top-color: white;
  border-right-color: #f4e4b9;
  border-bottom-color: #f4e4b9;
  border-left-color: white;
}
main #mainSection #searchResults #results .result img {
  height: 200px;
  width: 200px;
}
main #mainSection #searchResults #results .result h2 {
  font-size: 1.5em;
  text-align: center;
  margin: 0;
  padding: 0;
}
main #mainSection #searchResults #results .result p {
  font-size: 1em;
  margin: 0;
  padding: 0;
}
main #mainSection #searchResults #results .result:hover {
  background-color: #c50505;
  border: 2px solid #c50505;
  color: #fbf5e5;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}/*# sourceMappingURL=search.css.map */