@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap');

:root {
  --default: var(--halloween);
  --halloween: #eaa133;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter';
}
body {
  background: url(/wallpaper.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-weight: 400;
}

.nav {
  top: 0px;
  position: fixed;
  z-index: 1;
  width: calc(100vw - 20px);
  padding: 15px 200px;
  background: #1f2228;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin: 10px;
  justify-content: space-between;
  height: 56px;
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: var(--halloween);
}
.nav .logo {
  font-size: 22px;
  font-weight: 400;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
}
.nav .search-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}

/* responsive */
@media screen and (max-width: 2000px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 600px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }
  .nav {
    padding: 15px 20px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #16181c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

#google_translate_element {
  margin: 10px;
}

select {
  background: #1f2228;
  font-family: 'Inter';
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  outline: none;
  transition: 300ms;
}

label {
  font-family: 'Inter';
}

select:focus {
  transform: scale(1.1);
}

option {
  font-family: 'Inter';
  color: #fff;
  padding: 5px;
}

::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: #03131a;
}

::-webkit-scrollbar-thumb {
  background: #1f2228;
  border-radius: 8px;
}