body {
    background-color: var(--ftb-black);
}

#header-rel {
    height: 100vh;
}

#header-background {
    position: fixed;

    height: 100vh;
    width: 100vw;

    z-index: -2;
}

#header-content {
    font-family: 'Microgramma';
    color: white;
}

#header-content button {
    cursor: pointer;
    font-family: 'Microgramma';
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-size: 20px;
    font-weight: bolder;
    letter-spacing: 2px;
    padding: 14px;
    margin: 10px 20px;
}

#header-content button:hover {
    background-color: white;
    color: var(--ftb-black);
}

@media only screen and (orientation: landscape) {
    #header-background {
        background-image: url('../../images/FTBHorizontal25.jpg');
    }
}

@media only screen and (orientation: portrait) {
    #header-background {
        background-image: url('../../images/FTBVertical25.jpg');
    }
}

/* header styling for larger screens (desktop, laptops, etc.) */
@media only screen and (orientation: landscape) and (min-width: 1101px) {
    #header-background {
        background-size: cover;
        background-position: bottom 35% center;
    }

    #header-content {
        position: absolute;

        width: 75%;
        
        left: 0;
        right: 0;
        bottom: 20%;

        margin: auto;

        text-align: center;
    }

    #header-band-logo {
        width: 60%;
    }

    #header-content h2 {
        letter-spacing: 1px;
        margin-top: 25px;
    }
}

/* header styling for smaller landscape screens (phones, tablets, etc.) */
@media only screen and (orientation: landscape) and (max-width: 1100px) {
    #header-background {
        background-size: cover;
        background-position: bottom 25% center;
    }

    #header-content {
        position: absolute;

        width: 80%;

        left: 0;
        right: 0;
        bottom: 10%;

        margin: auto;

        text-align: center;
    }
    
    #header-band-logo {
        width: 50%;
    }

    #header-content h2 {
        font-size: 14pt;
        margin-top: 15px;
    }
}

/* header styling for portrait screens */
@media only screen and (orientation: portrait) {
    #header-background {
        background-size: cover;
        background-position: center;
    }

    #header-content {
        position: absolute;

        width: 90%;

        left: 0;
        right: 0;
        bottom: 15%;

        margin: auto;

        text-align: center;
    }

    #header-band-logo {
        width: 80%;
    }

    #header-content h2 {
        font-size: 10pt;
        
        margin-top: 10px;
    }
}

#content {
    height: 1500px;

    background-color: var(--ftb-black);
}