.main-content {
    background: url('../images/about-background.png') no-repeat center center/cover;
    color: #F0C494;
}

.about-section {
    width: 80%;
    padding: 20px;
    border-radius: 10px;
}

.about-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-images img {
    max-width: 100%;
    margin-bottom: 20px;
}

.band-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    opacity: 0.4;
}

.band-logos img {
    width: 100%;
    margin: 10px;
}

/* Media queries for responsive design */
@media (max-width: 900px) {

    .about-section {
        width: 90%;
        padding: 15px;
    }

    .about-section h1 {
        font-size: 28px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        margin: 20px 0;
    }

    .about-images img {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .about-section h1 {
        font-size: 24px;
        padding: 10px;
    }

    .about-section {
        width: 100%;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-images img {
        margin-bottom: 5px;
    }

    .band-logos img {
        max-width: 100px;
    }
}