body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: white;
}

.container {
    width: 90%;
    max-width: 500px;
    /* Reduced width to 400px */
    margin: 0 auto;
    /* Ensure the container is centered */
    text-align: left;
    /* Align text to the left */
}

.logo {
    width: 150px;
    /* Smaller default size */
    max-width: 100%;
    margin-bottom: 20px;
    align-self: flex-start;
    /* Align logo to the left */
}

.gigs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

a {
    color: black;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    /* Ensure vertical alignment is centered */
}

.gigs-list a .artist {
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    /* Center artist text with details */
}

.gigs-list a .details {
    font-weight: normal;
    font-size: 1em;
    display: flex;
    align-items: center;
    /* Center details text within the line */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    .gigs-list a {
        flex-direction: column;
        align-items: flex-start;
    }

    .gigs-list a .artist {
        font-size: 1.1em;
        margin-right: 0;
        margin-bottom: 0.2em;
    }

    .gigs-list a .details {
        font-size: 0.9em;
    }

    .logo {
        width: 100px;
        /* Smaller logo size on smaller screens */
    }
}

/* Media query for very small screens */
@media (max-width: 350px) {
    .gigs-list a .artist {
        font-size: 1em;
    }

    .gigs-list a .details {
        font-size: 0.8em;
    }

    .logo {
        width: 80px;
        /* Further reduce logo size */
    }
}