body {
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#logo{
    height: 40px;
    -webkit-filter: invert(.75); /* safari 6.0 - 9.0 */
          filter: invert(.75);
  }

h1 {
    font-size: 24px; /* Adjust the font size as needed */
    margin-bottom: 20px; /* Adjust the spacing between text and images */
}

.image-container {
    display: flex;
}

.image-container a {
    align-items: center;
    margin: 9pc; /* Adjust the spacing between images */
}

.image-container img {
    width: auto ; /* Set the width of your images */
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.1); /* Add a slight zoom effect on hover */
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 5px 0px 20px;
    z-index: 100; /* Ensure it's above other elements */
  }

  .button1 {
    background-color: #292228;
    border: none;
    border-radius: 40px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    margin: 0 10px;
    transition: background-color 0.3s, border-radius 0.3s; /* Add transition */
  }

  .button2 {
    background-color: #826c7f;
    border: none;
    border-radius: 40px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    margin: 0 10px;
    transition: background-color 0.3s, border-radius 0.3s; /* Add transition */
  }

  .button1:hover {
    background-color: #a2a9bd;
    border-radius: 10px;
  }

  .button2:hover {
    background-color: #a2a9bd;
    border-radius: 10px;
  }

  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 42px;
    transform: translateX(-50%);
  }
