@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline+Text:wght@800;900&family=Oswald:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: #e4ff49;
  letter-spacing: 5px;
  font-weight: 100;
}

body {
  background: #546275;
  background: -webkit-gradient(linear, left top, right top, from(#546275), to(#041434));
  background: linear-gradient(90deg, #546275 0%, #041434 100%);
  font-family: 'Oswald', sans-serif;
  color: white;
}

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  -ms-grid-rows: auto auto auto minmax(645px, auto) auto;
      grid-template-rows: auto auto auto minmax(645px, auto) auto;
      grid-template-areas: "logo" "search" "navi" "main" "footer";
}

.header {
  margin-top: 50px;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  color: white;
  text-decoration: none;
  font-family: 'Big Shoulders Inline Text', cursive;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__logo:visited {
  color: white;
}

.header__h1 {
  font-size: 80px;
}

.header__span {
  color: #e4ff49;
  font-size: 100px;
}

.header__h3 {
  text-transform: uppercase;
  font-size: 35px;
  line-height: 5px;
  padding-bottom: 20px;
}

.searchbar {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: search;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.searchbar__input {
  width: 90%;
  font-size: 20px;
  padding: 15px 30px;
  margin-top: 25px;
  color: white;
  border-radius: 10px;
  border: 1px solid #e4ff49;
  background-color: #5d6370;
  outline: none;
}

.nav {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: navi;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__forms {
  padding: 20px 0;
}

.nav__forms__wrapper-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__forms__wrapper-set:hover > .nav__forms__label {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  color: #e4ff49;
  -webkit-transition: 250ms;
  transition: 250ms;
  cursor: pointer;
}

.nav__forms__label {
  font-size: 20px;
}

.nav__forms__input {
  display: none;
}

.nav__forms__reset {
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e4ff49;
  background-color: #5d6370;
  color: #e4ff49;
  outline: none;
  cursor: pointer;
}

.nav__forms__reset:hover {
  -webkit-box-shadow: 0px 0px 17px 2px #bcf5ae;
          box-shadow: 0px 0px 17px 2px #bcf5ae;
  -webkit-transition: 250ms;
  transition: 250ms;
}

.main {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: main;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__list-ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main__list-li {
  list-style: none;
  margin-right: 5px;
}

.main__list-li__img {
  width: 130px;
  height: 200px;
}

.main__list-li__img:hover {
  -webkit-transition: 250ms;
  transition: 250ms;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border-bottom: 10px solid #e4ff49;
}

.main__list-li__a {
  display: block;
}

.footer {
  margin-top: 50px;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: footer;
  background-color: rgba(255, 255, 255, 0.141);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__ig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__h5 {
  line-height: 5px;
}

.footer__span {
  color: #e4ff49;
  font-size: 30px;
}

.footer__a,
.footer p {
  color: white;
  font-size: 12px;
  text-decoration: none;
  padding: 10px;
}

.footer__a i {
  font-size: 40px;
}

.footer__a:hover {
  color: #e4ff49;
}

@media (min-width: 700px) {
  .main__list-li__img {
    width: 200px;
    height: 300px;
  }
  .nav__forms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__forms__wrapper-set {
    padding: 20px;
  }
  .searchbar__input {
    width: 60%;
  }
}

@media (min-width: 1000px) {
  .main__list-li__img {
    width: 300px;
    height: 450px;
  }
  .main__list-ul {
    max-width: 80%;
  }
  .nav__forms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__forms__wrapper-set {
    padding: 40px;
  }
}
/*# sourceMappingURL=style.css.map */