body::before {
    background-image: linear-gradient(rgba(168, 148, 111, 0.486), rgba(168, 148, 111, 0.486)), url("../media/bkgd.jpg");
    background-size: cover;
    content: '';
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: -1;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#page-title {
    background-color: rgba(168, 148, 111, 0.486);
    color: rgb(182, 45, 21);
    font-family: "Kaushan Script";
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px .2rem rgba(0, 0, 0, 0.5);
}

#content {
    padding: 5rem;
}

#location {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#location-info {
    margin: 0 2rem;
}

#location-info h1 {
    border-bottom: .13rem solid white;
    font-family: "Newsreader";
    font-size: 3.5rem;
    padding: 1rem;
    text-align: center;
}

#location-info h2 {
    font-size: 2rem;
}

#location-info p {
    font-size: 1.2rem;
}

#map {
    margin: 0 2rem;
}

#map iframe {
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    height: 350px;
    width: 800px;
}

#lineup {
    display: flex;
    flex-direction: column;
    margin: 5rem 0;
}

#lineup-title {
    font-family: "Newsreader";
    font-size: 2rem;
    text-align: center;
}

.artist {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 2rem;
}

.artist-photo img{
    aspect-ratio: 1/1;
    border: 2px solid white;
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    object-fit: cover;
    width: 25rem;
}

.artist-bio {
    margin-left: 2rem;
    max-width: 45rem;
}

.artist-bio h2 {
    font-size: 2rem;
}

.artist-bio p {
    font-size: 1.2rem;
}

.artist-socials a {
    color: white;
    text-decoration: none;
}

.artist-socials ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: center;
    padding: 0;
}

.artist-socials .fa-brands {
    align-content: center;
    aspect-ratio: 1/1;
    background-color: rgb(182, 45, 21);
    border-radius: 50%;
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 2.5rem;
    margin: 1rem .5rem 0 .5rem;
    padding: .4rem;
    text-decoration: none;
}

.artist-socials .fa-brands:hover {
    background-color: rgb(202, 66, 42);
}

.artist-socials .fa-brands:active {
    background-color: rgb(223, 93, 70);
}

#lineup-footer {
    font-size: .6rem;
    margin-top: 2rem;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .artist {
        flex-direction: column;
    }

    .artist-photo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .artist-bio {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 6rem;
        text-align: center;
        max-width: 100%;
    }

    .artist-bio p {
        text-align: left;
    }
}

@media screen and (max-width: 900px) {
    #location-info {
        text-align: center;
    }

    #map {
        margin-top: 2rem;
    }

    #map iframe {
        width: 500px;
    }

    .artist-bio {
        margin: 0;
    }
}

@media screen and (max-width: 570px) {
    #page-title {
        font-size: 1.6rem;
    }

    #content {
        padding: 1.5rem;
    }

    #map iframe {
        width: 290px;
    }

    .artist {
        padding: 0;
    }

    .artist-photo img {
        max-width: 21rem;
    }

    .artist-socials {
        margin-bottom: 4rem;
    }
}