@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
html {
    font-family: "Roboto";
    background-color: #202021;
}



.no-outline-table td {
  padding: 2vh 0 0 2vw;
}


p {
  margin: 4vh 0 4vh 0;
}


.subpart {
  margin-top: -30px;
}

.subcontext {
  margin-top: 11vh;
}


.part {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.6), 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  margin-top: -3vh;
  margin-left: 0.8vw;
  background-color: #111112;
  border-radius: 10px;
}

hr {
  margin: 0.5vh 0 4vh 0;
}

.orange {
    color: darkorange; !important
}

table {
  text-align: center;
  color: white;
  border-collapse: collapse;
}

.link {
  color: lightblue;
  transition: all 0.5s ease;
}

.link:hover {
  color: #B6BE9C;
}


.highlight {
  text-decoration: underline;
}


.image {
  max-width: 90%;
  border-radius: 15px;
  margin-left: 0.8vw;
}

.lavender {
    color: #9966CC; !important
}
.content {
    font-size: 20px;
    padding-top: 1vh;
    margin: 0 2.5vw 0 2.5vw;
    color: white;
}
/* Sidebar Styles */
.sidebar {
    color: white;
    font-family: "Roboto";
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #373737;
    transition: left 0.3s ease;
}

.sidebar nav ul {
    list-style: none;
    padding: 20px;
}

.sidebar nav ul li {
    margin-bottom: 20px;
}


.sider li {
  color: darkteal;
}


li > a {
  transition: all 0.3s ease;
  color: white;
}

.sidebar nav ul li a {
    text-decoration: none;
    font-size: 20px;
}

li {
    color: white;
}

li h3, li > a:hover {
    color: lightblue;
}

.sidebar-selected {
  color: blue;
}

#sidebar-toggle {
    display: none;
}


code {
  padding: 0 5px 0 5px;
  border-radius: 7px;
  background-color: #0c0c0d;
}


.button {
  text-decoration: none; 
  color: white;          
  background-color: rebeccapurple; /* rest in peace. */
  border: none;          
  padding: 10px 20px;    
  border-radius: 999px;   
  display: inline-block; 
  text-align: center;    
  transition: background-color 0.3s ease;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 30px;
  cursor: pointer;
}

.button:hover {
  background-color: darkblue;
}


#sidebar-toggle:hover {
    cursor: pointer;
    filter: brightness(50%);
}

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


.toggle-label {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 1000;
    color: #333;
    user-select: none;
    transition: left 0.3s ease;
}

#sidebar-toggle:checked ~ .toggle-label {
    left: 260px;
}
