body{
    margin: 0px;
    background-color: #008080;
   
}

@font-face {
    font-family: win95;
    src: url(/fonts/W95FA.otf);
}

.taskbar{
    position: fixed;
width: 100%;
height: 40px;
bottom: 0px;
background-color: #C0C0C0;
display: flex;
box-sizing: border-box;
border-top: 3px solid white;
flex-direction: row;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.startup img{
    flex: 1;
    max-height: auto ;
    max-width: 100px;
}

.icongrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    height: 100%;
    margin-left: 10px;
    margin-top: 10px ;
}

.iconcontainer {
    width: 300px;
    height: 80%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.icontile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icongrid img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    box-sizing: border-box;
}

.icontile p {
    margin-top: 10px; 
    color: white; 
    font-family: win95;
}

.icontile:hover{
    cursor: pointer;
  }

 a{
    text-decoration: none;
 }

 #fileExplorer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-sizing: border-box;
    border: 5px solid #B4B6BB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    display: none;
    height: 50%;
    width: 45%;
    font-family: win95;
    font-size: 1rem;
    
  }

  .filebox{
    display: flex;
    flex-direction: column;
    height: 100%;

  }

  .fileboxtop{
    flex: 10%;
   color: black;
    background-color: #B4B6BB;
   
  }
.fileboxtop p{
position: absolute;
 top: 0PX;

}
  .fileboxmid{
    flex: 80%;
    
    display: flex;
    justify-content: left;
    align-items: left;
    margin: 10px;
    background-color: white;
    
  }

 

  .closebutton img{
    position: absolute;
    top: 0;
    right: 0;
    height: 8%;
  }

  .closebutton:hover{
    cursor: pointer;
  }

  .filegrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns */
    grid-gap: 15px; /* Adjust the gap between icons */
    width: 100%;
  }
  
  .icon {
   
    padding: 10px; 
    text-align: center;
    max-width: 100%; 
    max-height: 100%; 
  }

  .icon:hover{
    cursor: pointer;
  }
  
  .icon img {
    max-width: 100%; 
    max-height: 100%; 
    display: block; 
    margin: auto; 
  }

  
  
  .filebox a{
    text-decoration: none;
    color: black;
  }

  #browser {
    position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-sizing: border-box;
    border: 5px solid #B4B6BB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    display: none;
    height: 90%;
    width: 70%;
    font-family: win95;
    font-size: 1rem;
    overflow: auto; /* Enable scrolling within the fake browser */
}

.photoroll {
    margin: auto;
    width: 90%;
    box-sizing: border-box; /* Ensure padding is included in width */
    padding-right: 20px;
    /* Optional: If you want to limit the height and enable vertical scrolling within .photoroll */
    max-height: 95%;
    overflow-y: auto;
}

.photoroll img {
    display: block;
    margin: auto;
    max-width: 100%; /* Adjusted for full-width within .photoroll */
    height: auto; /* Maintain aspect ratio */
    padding: 20px 0 100px 0;
}

.portrait img{
    display: block;
    margin: auto;
    max-width: 50%; 
    width: auto;
    padding: 20px 0px 100px 0px;
  }

  #closebutton{
    position: absolute;
    top: 0;
    right: 0;
    height: 7%;
  }

