:root{
  --color-1: #0f1016;
  --text-color: #f0f0f0;
  --accent-color: #212224;
}
*{
  margin: 0;
  padding: 0;
}
html{
  font-size: 12pt;
  font-family: Arial, Helvetica, sans-serif;
}
nav{
  position: sticky;
	top: 0;
	z-index: 90;
  height: 28px;
  background-color: #212224;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.links-container{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
nav a{
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-size: 15px;
  text-decoration: none;
  color: var(--text-color);
}
nav a:hover{
  color: #ff0000;
  text-decoration: none;
}
nav a.active {
  color: #ff0000;
  text-decoration: underline;
}
nav svg{
  fill: var(--color-1);
}
#sidebar-active{
  display: none;
}
.open-sidebar-button, .close-sidebar-button{
  display: none;
}
@media(max-width: 800px){
  .links-container{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;

    background-color: #FFD500;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }
  nav{
    justify-content: flex-end;
  }
  nav a{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .open-sidebar-button, .close-sidebar-button{
    padding: 20px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container{
    right: 0;
  }
  #sidebar-active:checked ~ #overlay{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}