body {
    background-color:black;
    font-family: firasans;
    color:white;
    font-size:16px;
}

/*-------Font------*/
@font-face {
  font-family: "firasans";
  src: url(fonts/FiraSans.ttf) format("truetype");
}

/*-------Header-------*/
.header{
  display:flex;
  justify-content:center;
  margin-top:10px;
  margin-bottom:10px;
}


/*-------Index-------*/ 
.flex{
    display: flex;
    justify-content: center;
}
    
.sidebar {
    background-color: #0c0c0c;
    width: 200px;
    padding: 20px;
    margin-bottom:10px;
}
    
.profile {
    background-color: #0c0c0c;
    width: 800px;
    padding: 20px;
    margin-bottom:10px;
}
    
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
}
    
.profile-info {
    margin-bottom: 20px;
}
    
.profile-info h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}
    
.profile-info p {
    margin: 5px 0;
    line-height:2;
}
    
.profile-description {
    font-size: 14px;
    line-height:2;
}
    
/*-------Image Gallery-------*/
    .image-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; /* Center the images horizontally */
      align-items: center; /* Center the images vertically */
      margin-top: 20px;
    }
    
    .image-gallery img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 5px;
      cursor: pointer;
      margin-top:5px;
      opacity: 0.8;
      transition: 0.3s;
    }
    
    .image-gallery img:hover{
       opacity:1.0;
       transition: 0.3s;
       transform: translateY(-10px);
    }
    
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 999;
      justify-content: center;
      align-items: center;
    }
    
    .lightbox-image {
      max-width: 90%;
      max-height: 90%;
      border-radius: 5px;
    }