/* -------------------------------------------------------- */
/* ---------------------- CSS Body Ejs  ------------------- */
/* -------------------------------------------------------- */

body {
  font-family: "Montserrat", sans-serif;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-sizing: border-box;
  user-select: none;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 35px 0 0 0;
}

/* ------------------ Design Navbar ------------------ */
.navbar {
  height: 60px;
  width: 90vw;
  max-width: 36rem;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-width: 0.1rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.navbar .logo {
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16pt;
}

.navbar .logo a {
  color: #ffffff;
  text-decoration: none;
}

.navbtn a {
  padding: 0.25em 0.5em;
  color: #ffffff;
  text-decoration: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  transition: all ease 0.3s;
}

.sign-btn span {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.01);
  color: rgb(226, 226, 226);
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-width: 0.1rem;
}

.sign-btn span:hover {
  background-color: #4e4e4e;
  color: rgb(196, 196, 196);
}

.navbtn a:hover {
  padding: 0.25em 1em;
  color: #777;
  transition: all ease 0.3s;
}

.SFXSettings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 3rem;
  height: 3rem;
  background-color: rgba(40, 40, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.SFXSettings:hover {
  background-color: rgba(60, 60, 60, 0.9);
  transform: scale(1.05);
}

/* ------------------ Design Scrollbar ------------------ */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ------------------ End ------------------ */
/* ------------------ End ------------------ */
/* ----------------------------------------- */