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


.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color:#1D1F21;
    transition: left 0.3s ease-in-out;
    overflow: hidden;

  }


  .sidebar-toggle-label {
    position: fixed;
    top: 27px;
    left: 20px;
    cursor: pointer;
    z-index: 999;
  }

  .sidebar-toggle-label span {
    display: block;
    width: 44px;
    height: 7px;
    margin-bottom: 7px;
    background-color: #b7bdf8;
    /*border: 1px solid #1D1F21;*/
    transition: transform 0.2s ease-in-out;
    border-radius: 8px;
  }

  input[type="checkbox"]:checked ~ .sidebar {
    left: 0;
  }
  


.sidebar-toggle-label:hover span {
  transform: scaleX(1.13);
}


#sidebar-toggle {
  display: none;
}

#sidebar-toggle:checked ~ .sidebar {
  left: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 500px;
  height: 100vh;

  /*background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  */
  background-color:#1D1F21;
  transition: left 0.3s ease-in-out;
  overflow: hidden;
}






  .container {
    margin-top: 85px;
    height:calc(100% - 85px);
    width:97%;
    margin-left: 15px;
    color: #cdd6f4;
    font-size: 25px;
    word-wrap: break-word;
    overflow: scroll;
    overflow-y:scroll;

  }
  .container p{
    margin-top: 15px;
    margin-bottom: 15px;

  }

  .container::-webkit-scrollbar { 
    display: none; 
  } 


  
  .image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
  }
  
  .image img {
    max-width: 100%;
    max-height: 100%;
  }

.homebtn {
    position: fixed;
    width: 10px;
    height: 10px;
    margin-top: 4px;
    margin-left: 90px;
    color: #b7bdf8;
    font-size: 50px;
}


.gradient-button {
  color: #1D1F21;
  padding: 7px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  background-size: 200% auto; 
  transition: 0.5s;
  background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 51%, #fbc2eb 100%)
}


.gradient-button:hover { background-position: right center; }



/* scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background-color: #1e2030;
}


::-webkit-scrollbar-thumb {
  background-color: #8087a2;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #939ab7;
}

::-webkit-scrollbar-track {
  background-color: #24273a;
}

::-webkit-scrollbar-track:hover {
  background-color: #363a4f;
}