html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    
    /* -webkit-tap-highlight-color: transparent; */
  }
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body::before {
  content: "";
  position: fixed;
  top: -50px;
  left: -50px;
  width: calc(100vw + 100px);
  height: calc(100vh + 100px);
  background-image: url("./Img/bio/BioBG.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: blur(12px);      /* adjust blur strength */
  z-index: -1;             /* behind page content */
  pointer-events: none;
}


@font-face {
  font-family: "Pixelized";
  src: url('Pixelized-Handwriting.woff') format('woff');
}

.navbar{
  margin-top: 1%;
  position: fixed; /* Fixes the header to the viewport */       /* Positions the header at the left */
  width: 100%;   /* Set a height for the header, adjust as needed */
  display: flex;   /* Enables flexbox for centering */
  justify-content: center; /* Centers the content horizontally */
  align-content: center;     /* Centers the content vertically */
  z-index: 100;
}

#gif{
  width: clamp(300px, 25vw, 1000px);
  object-fit: contain;
}

.site-main{
  width: 100vw;
  height: 100vh;
  padding: 0%;
  position: relative; /* ensure .bio absolute positioning is relative to this */
  /* paddin typo fixed */
}

.bio {
  position: absolute;
  top: 6%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  overflow: hidden;
  margin: 0;
  padding: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  paint-order: stroke fill;
}


p{
  font-family: 'Pixelized', sans-serif;
  font-size: clamp(30px, 7vw, 40px);
  color: white;
  text-align: justify;
  line-height: 2.5rem;
  -webkit-text-stroke-width: .25rem;
  -webkit-text-stroke-color: black;
}

.pdfs {
  display: flex;
  align-items: center;
  gap: 10%;
  margin-top: 3%;
}

.pdfs a{
  font-family: 'Pixelized', sans-serif;
  font-size: clamp(50px, 8vw, 60px);
  color: white;
  text-align: justify;
  -webkit-text-stroke-width: .25rem;
  -webkit-text-stroke-color: black;
}


ul,li{list-style: none;}
a{ text-decoration: none;}

.input-toggler{ display: none;}
.menu-toggler {height: auto; position: fixed; left: 50%; bottom: 2.5%; transform: translateX(-50%); z-index: 100; cursor: pointer; justify-content: center; align-items: center; filter: drop-shadow(3px 0 0 white) 
  drop-shadow(0 2px 0 white)
  drop-shadow(-2px 0 0 white) 
  drop-shadow(0 -2px 0 white);}

.menu-toggler-icon, img{width: clamp(85px, 8vw, 10px); transition: 100ms ease-in-out;}

.input-toggler:checked ~ .menu-toggler img {transform:rotate(-45deg); transition: 100ms ease-in-out;}


.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background:#ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transform: translateY(500%);
  transition: 300ms ease-in-out;
}




.menu{
  padding: 0%;
  margin: 0%;
  font-size: clamp(3rem, 1vw, 5rem);
  font-family: "Pixelized";
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  
}

.menu-text{
  color: #ff0000;
}

.input-toggler:checked ~ .sidebar {transform: translateY(0%); transition: 300ms ease-in-out;}

li.menu-link:nth-child(odd){
  animation: 1s shake-odd infinite steps(2, end);
}

li.menu-link:nth-child(even){
  animation: 1s shake-even infinite steps(2, end);
}

@keyframes shake-odd {
  0% { transform: rotate(-2deg); }
  100% { transform: rotate(2deg); }
}

@keyframes shake-even {
  0% { transform: rotate(2deg); }
  100% { transform: rotate(-2deg); }
}

@media (max-width: 900px) {

  p{
    line-height: 2rem;
  }

  .pdfs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15%;
}

.menu-toggler {bottom: 0.5%;}

}