  /* I see u looking at my code stinky */
  .bodywrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
html, body {
  height: 100%;
}

body {
  background-image: url("/pictures/bonebackground2.png");
  background-color: #1d1d4d;
  /*background-color: #000033; */
  /*background: linear-gradient(to bottom, #000099, #000033); */
  color: #a4a4c1;
  font-family: Verdana;
  margin: 0;
}
    
@font-face {
  font-family: 'lazydog';
  src: url('/fonts/lazy_dog.woff2') format('woff2');
}
.lazydog {
  font-family: 'lazydog';
  font-size: 40px;}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #a4a4c1;
}  

.nav-basic {
  width: 100%;
  border-width: 5px 0;
  border-style: solid;
  border-color: #000033;
  padding-top: 2%;
  padding-bottom: 2%;
  background-color: #48484e;
  color: #a4a4c1;
  overflow: auto;
  white-space: nowrap;
}

.nav-list {
justify-content: center;
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
}

nav a {
color: inherit;
font-size: 150%;
text-decoration: none;
padding: 10px 50px;
display: block;
display: inline-block;
margin: 0 15px;


}

  /*highlights menu buttons*/
.nav-item a:hover {
  background: rgba(255, 255, 255, 0.1);
  
}
  
.center {
    text-align: center;
} 

#copyright {
  margin-top: auto;
  text-align: center;
  padding: 35px 0;
}


/* For phone*/

@media (max-width: 1000px) {
 body {
  padding-top: 80px;
}
 
  /* Hamburger icon styles */
  .hamburger {
    display: flex;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background: #48484e;
    border-radius: 8px;
  }
  
  /* Hamburger animation to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-basic {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* choose a mobile height */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
}

  .nav-list {
    justify-content: flex-start;
    display: none;
    position: fixed;
    top: 0;
    left: 0%;
    width: 170px;
    height: 100vh;
    background: #48484e;
    flex-direction: column;
    padding: 100px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
    align-items: flex-start;
    border-right: 3px solid #a4a4c1;
  }
  
  .nav-list.active {
    display: flex;
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .nav-item {
    margin: 10px 0;
    width: 100%;
  }
  
  .nav-item a {
    padding: 15px 20px;
    font-size: 130%;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: left;
    color: inherit; text-decoration: none;
  }
  
  .nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
  }
  
}








