/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: url("media/bisco.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  backdrop-filter: blur(4px);
  
  width: 100vw;
  height: 100vh;
  
  color: white;
  font-family: Afacad;
  text-shadow: 2px 2px black;
  
  margin: 0;
  padding: 0;
}

a:link {
  color: pink;
}

.hidden {
  visibility: collapse;
}



/*Sidebar stuff*/
.sidebar {
  background: linear-gradient(90deg, #000000AA, #00000000);
  color: white;
  height: 100vh;
  width: 200px;
  position: fixed;
  z-index: 1;
}

.sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  padding: 4px 0px;

  background: none;
  color: white;
  padding-left: 4px;
  
  transition-duration: 0.25s;
}

.sidebar li:hover {
  background: white;
  color: black;
  padding-left: 8px;
  font-size: 110%;
  text-shadow: none;
}



.main {
  margin-left: 200px;
  padding: 16px;
}

.main h1 {
  margin: 0;
}