#logo {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  
  #logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    width: 400px;
  }
body {
    background-image: url(aboutbg2.gif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: relative;
    0
}

h1 {
    text-align: center;
    margin: auto;
    color: #ffffff;
    font-size: 44px;
}

#homeicon {
    position: absolute;
    height: 100px;
    width: auto;
}

.aboutflex-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align all elements */
    gap: 20px; /* Vertical spacing */
    padding: 20px;
}

.image-wrapper {
    display: flex;
    align-items: center; /* Align images and box content */
    justify-content: space-between; /* Space images at the edges */
    max-width: 1050px; /* Ensure layout stays within bounds */
    width: 100%; /* Stretch across the container */
}

.aboutbox {
    background-color: #000000a8;
    border: 2px solid #383838;
    border-radius: 4px;
    color: white;
    padding: 15px;
    flex: 1; /* Allow the box to take up remaining space */
    max-width: 800px;
    text-align: left;
    margin: 0; /* Remove additional margins */
    width: 1200px;
}

.content {
    font-size: 35px;
}

#simon, #joy {
    width: 100px;
    height: auto;
    flex-shrink: 0; /* Prevent images from shrinking */
}
