::-webkit-scrollbar {
  display: none;
}
* {
  scrollbar-width: none;
}

:root {
  --bg: #ffffff;
  --bgopc: 0.5;
  --text: #111111;
  --primary: rgb(255, 255, 255);
}

[data-theme="dark"] {
  --bg: #111111;
  --bgopc: 0.2;
  --text: #ffffff;
  --primary: rgb(0, 0, 0);
}

body {
  margin: 0;
  background-color: var(--bg);
  font-family: 'Roboto';

  position: relative;
  overflow: hidden;
}

.backgroundImg {
  position: absolute;
  top: 0;

  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: var(--bgopc);
  filter: blur(0px);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: fit-content;
  padding: 1rem;
  opacity: 100%;

  background-color: rgb(255, 255, 255);
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 255);

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  overflow: scroll;
}

@media (max-width: 520px) {
}

.logo {
  position: absolute;
  left: 50vw;
  top: 35vh;
  transform: translate(-50%, -50%);

  max-height: 25vh;
  max-width: 90vw;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 1));

  display: none;
}

.mockBtn {
  position: absolute;
  left: 50vw;
  top: 40vh;
  transform: translateX(-50%);
  
  background-color: white;
  border-left: 10px solid white;
  border-right: 10px solid white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  border-radius: 10px;

  color: black;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0);
  transition: all 0.15s ease;
  
  cursor: pointer;
}

.mockBtn:hover {
  border-left: 10px solid rgb(255, 94, 0);
  border-right: 10px solid rgb(255, 94, 0);
}

.author {
  position: absolute; 
  left: 50vw;
  top: 70vh;
  transform: translateX(-50%);
  
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0);
  text-decoration: none;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.xLogo {
  height: 20px;
  margin-right: 10px;
  filter: drop-shadow(0 0 2px black);
}

.hamburger {
  height: 24px;
  margin-right: 10px;
  margin-left: 5px;
}

.modeBtn {
  background-color: rgba(255, 255, 255, 0);
  height: fit-content;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
  line-height: 1.2rem;
  margin-right: 10px;
  border-left: 2px solid rgb(255, 94, 0);
  padding-left: 5px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
}

.modeBtn:hover {
  box-shadow: -5px 0px 0 rgb(255, 94, 0);
  font-weight: 700;
}

.themeOptions {
  display: flex;
  flex-direction: row;
  height: fit-content;

  position: absolute;
  left: 50vw;
  top: 30vh;
  transform: translate(-50%, -50%);
}

.themeBtn {
  width: 40px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgb(255, 94, 0);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lightTheme {
  background-color: white;
  border-top-left-radius: 5px;
}

.darkTheme {
  background-color: rgb(0, 0, 0);
  color: white;
  border-top-right-radius: 5px;
}

.themeBtn:hover {
  border-bottom: 5px solid rgb(255, 94, 0);
}