/* 
_  __    .  ___   ___  __     __
| |/ /   .  |   \ | __| \ \   / /
| ' <    .  | |) || _|   \ \_/ / 
|_|\_\   .  |___/ |___|   \___/  K . D E V */

html, body {
  height: 100%;
  margin: 0; 
}

body {
  font-family: sans-serif;
  background: linear-gradient(45deg, #000000,#301600f1);
  height: 100%;
  height: 100%;
}

.navbar {
  font-size: 1.5vh;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #0000006e;
  color: white;
  padding: 1.5vh 0;
  z-index: 1000;
  box-shadow: 0 0.05vh 0.0vh #ffc4005d;
  backdrop-filter: blur(0.5vh);
  -webkit-backdrop-filter: blur(0.3vh); 
}

.navbar-container {
  max-width: 96vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu a {
  background-color: #ffc40000;
  color: rgb(255, 255, 255);
  padding: 1vh 2vh;
  border-radius: 0.5vh;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 0.4vh 0.8vh rgba(0, 0, 0, 0.2);
}

.menu a:hover {
  color: white;
  background-color: #ffc4009c;
  transform: scale(1.05); 
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5vh;
}
  
.navbar-container img{
  width: 10%;
  height: 10%;
}
.menu {
  display: flex;
  gap: 2vh;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}



.main-box{
  position: fixed;
  top: 8%;
  left: 20%;
  width: 60%;
  height: 92%;
  overflow-y: auto;
}
              
                
               