@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap");

* {
   font-family: "Poppins", sans-serif;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none;
   text-decoration: none;
}

html {
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 8rem;
}
html::-webkit-scrollbar {
   width: 1.5rem;
}
html::-webkit-scrollbar-track {
   background: transparent;
}
html::-webkit-scrollbar-thumb {
   background-color: #eeeeee;
}

body {
   user-select: none;
}

.container {
   background: url("./images/iq-blast-pro-desktop.webp");
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: scroll;
   filter: brightness(0.5);
   height: 100vh;
}

.cookie-settings {
   position: fixed;
   top: 35%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 999;
   width: 100%;
}

.cookie-settings img {
   width: 450px;
   display: block;
   margin: auto;
}

.menu {
   background-color: #1b1e1f;
   border-top: 2px solid lightgrey;
   padding: 2rem 0;
}

.menu .wrap {
   max-width: 1200px;
   margin: auto;
}

.menu nav {
   text-align: center;
}

.menu nav a {
   color: #fff;
   font-size: 1.5rem;
   margin-left: 1rem;
}

.menu p {
   color: lightgrey;
   font-size: 1.5rem;
   text-align: center;
   padding: 3rem 0 0;
}

.menu .wrap .footer-logo {
   border-top: 2px solid lightgrey;
   display: flex;
   align-items: center;
   gap: 3rem;
   margin-top: 3rem;
}

.menu .wrap .footer-logo img {
   width: 300px;
}
.menu .wrap .footer-logo p {
   text-align: start;
}

/* Responsive */

@media (max-width: 768px) {
   .menu {
      padding: 2rem;
   }

   .menu .wrap .footer-logo {
      flex-direction: column;
      gap: 0;
   }

   .menu .wrap .footer-logo img {
      margin-top: 2rem;
   }
}

@media (max-width: 450px) {
   .container {
      background-image: url("./images/iq-blast-pro-mobile.webp");
   }

   .cookie-settings img {
      width: 100%;
   }
}
