body {
    margin: 0;
    display: flex;
    height: 100vh;
  }

  text body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.text-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
  }
.buffer {
    height: 30%;
  }
  .item {
    height: .5%;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: calc(0.5em + 0.5vw);
  }

  .counter {
    height: .5%;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: calc(0.5em + 0.5vw);
  }

.menu-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 75vh;
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent background */
    color: grey;
  }

  .menu-item {
    margin-bottom: 10px;
    cursor: pointer;
    font-size: calc(0.5em + 0.5vw);
  }

  a {
    text-decoration: none;
  }

.signature img{
    width: 100%;
    justify-self: center;
}


@media (min-aspect-ratio: 1/1) {
    .image-container {
        display: flex;
        align-items: center;
        width: 75%;
        flex-direction: row;
      overflow-x: scroll; /* Enable horizontal scrolling */
    }
    .image-container img {
        height: 60vh;
        margin-top: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
      }
  }
    
  /* Media query for long aspect ratio screens */
  @media (max-aspect-ratio: 1/1) {
    .image-container {
        display: flex;
        align-items: center;
        width: 75%;
        flex-direction: column;
      overflow-y: scroll; /* Enable vertical scrolling */
    }
    .image-container img {
        width: 75%;
        margin-top: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
      }
  
  }
  .enlarged-photo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .enlarged-photo img {
    max-width: 90%;
    max-height: 90%;
  }
