@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
}
body{
  min-height: 100vh;
  background-image: url(/img/KBi_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Poppins;
}
nav{
  background-color: rgba(255, 255, 255, 0.155);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  color: #fff;
}
nav a:hover{
  background-color: #f0f0f0;
  color: black;
  text-shadow: none;
}
nav li:first-child{
  margin-right: auto;
  font-weight: 800;
  font-size: 36px;
  text-shadow: 0 2px 3px #000;
}
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}

.content{
  position: absolute;
  top: 10%;
  width: 1140px;
  max-width: 85%;
  left: 85%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 2px 2px 3px #000;
}
.content .title{
  font-size: 3em;
  font-weight: bold;
  line-height: 1.3em;
  color: #ff0303;
}
.content .topic{
  font-size: 3em;
  font-weight: bold;
  line-height: 1.3em;
  color: #fff;
}
.content .des{
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 500px){
  .sidebar{
    width: 100%;
  }
  .content .des{
    font-size: 12px;
  }
  .content{
    left: 60%;
    max-width: 100%;
  }
}