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

:root {
  --default: #fff;
  --halloween: #df5684;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik';
  color: #fff;
  letter-spacing: 0 !important;
}
body {
  background: url(/wallpaper.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-weight: 400;
}

.nav {
  top: 0px;
  position: fixed;
  z-index: 1;
  width: 100%;
  padding: 15px 200px;
  height: 56px;
}
.nav {
  display: flex;
  align-items: center;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: var(--halloween);
}
.nav .logo-image {
  width: 30px;
  height: 30px;
  margin: 5px;
}
.nav .logo {
  font-size: 22px;
  font-weight: 400;
  transition: 300ms;
}
@media screen and (max-width: 2000px) {
  .nav {
    padding: 15px 50px;
  }
}

@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
}

@media screen and (max-width: 600px) {
  .nav {
    padding: 15px 20px;
  }
}

#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: 'Rubik';
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--halloween);
  border-radius: 8px;
}