body {
    background-image: url(aboutbg.jpg);
    background-repeat: repeat;
    background-size: 100% auto;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
    padding: 20px;
}


.photobox {
    background-color: #000000a8;
    border: 2px solid #383838;
    border-radius: 4px;
    color: white;
    padding: 15px;
    flex: 1; 
    max-width: 1250px;
    text-align: left;
    margin: 0; 
    width: 990px;
    padding-left: 20px;
}

.image {
    max-width: 300px;
    flex: 0 1 300px;
    transition:transform 0.25s ease;
    height: auto;
}

.image:hover {
    -webkit-transform:scale(1.5); 
    transform:scale(1.5) translate(0px, 30px);
}


#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;
}