
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0e0e0e;
    color: white;
    padding: 1rem;
}

.logo {
    display: block;
    max-width: 360px;
    margin: 2rem auto;
}

.full-image {
    width: 90%;
    height: auto;
    max-width: 900px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.about, .setlist, .gallery, .contact, footer {
    max-width: 900px;
    margin: 2rem auto;
    text-align: justify;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.image-row img {
    height: 150px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
}

.button-row, .contact div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.button {
    background-color: ##0e0e0e;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 600px) {
    .button-row, .contact div {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 90%;
    }

    .logo {
        max-width: 80%;
    }

    .image-row img {
        height: auto;
        width: 90%;
        border-radius: 8px;
    }

    .full-image {
        width: 90%;
    }
}
