body {
    font-family: 'Lexend Deca', sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0.125em;
    font-size: 2vmin;
    color: #212121;
}

a {
    text-decoration: none;
    color: rgba(131, 22, 24, 0.9);
}

a:not(.bypass):hover {
    border-bottom: solid 3px rgba(131, 22, 24, 0.5);
}

.background {
    position: fixed;
    height: 100vmax;
    width: 100vmax;
    background-image: url('/img/main-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    filter: blur(5px) saturate(50%);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 4em;
    justify-content: space-around;
    position: relative;
    z-index: 2;
    min-height: 100%;
}

.content .header {
    margin: 2em auto;
    max-width: 80vmax;
    font-size: 2em;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(131, 22, 24, 0.9);
    display: flex;
    justify-content: space-between;
    gap: 0.5em;
}

.content .socials {
    display: flex;
    justify-content: center;
    gap: 3em;
    margin-bottom: 4em;
}

.content .socials a {
    display: inline-block;
    height: 6em;
    width: 6em;
    position: relative;
    transition: transform 0.2s;
}

.content .socials a:hover {
    transform: scale(1.1);
}

.content .socials a svg {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    fill: rgba(0, 0, 0, 0.5);
    transition: fill 1.5s;
}

.content .socials a:hover svg {
    transition: fill 0.2s;
}

.content .socials a.instagram:hover svg {
    fill: rgba(182, 0, 189, 1);
}

.content .socials a.spotify:hover svg {
    fill: rgba(29, 185, 84, 1);
}

.content .socials a.bandcamp:hover svg {
    fill: rgba(98, 154, 169, 1);
}

.content .socials a.apple:hover svg {
    fill: rgba(250, 45, 72, 1);
}

.content .appearing {
    margin: auto;
    font-size: 2em;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(131, 22, 24, 0.9);
}

.content .shows {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    gap: 2em;
    max-width: calc(100vw - 4em);
}

.content .shows .show {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 2em;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 1.3em;
}

.content .shows .show .date-location {
    display: flex;
    justify-content: space-between;
    gap: 4em;
    align-items: baseline;
}

.content .shows .show .date-location .date {
    font-size: 1.4em;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.6);
}

.content .shows .show .date-location .location {
    font-weight: 200;
    text-transform: uppercase;
    white-space: nowrap;
}

.content .footer {
    flex: 1;
    padding: 5em;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    font-size: 2em;
}

.content .bio {
    max-width: 80vmin;
    margin: 0 auto;
}