/* FOOTER */
    footer
    {
        height: 5vh;
        width: 100%;
        background-color: black;
        padding: 10px 0 10px 0;
        position: relative;
        bottom: 0;
    }

    #contact-div
    {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .contact-link
    {
        display: block;
        width: 100%;
        height: 100%;
        border: none;
        border-left: 1px solid #f1f0e9;
        border-right: 1px solid #f1f0e9;
        text-align: center;
        font-size: 1vw;
    }

    .contact-link, .contact-link:visited, .contact-link:focus
    {
        text-decoration: underline;
        text-decoration-color: black;
        color: #f1f0e9;
        transition-duration: 1s;
    }

    .contact-link:hover
    {
        transition-duration: .5s;
        text-decoration: underline;
        text-decoration-color: #f1f0e9;
        color: white;
    }

    .contact-span
    {
        display: block;
        height: 5vh;
    }

    #email-btn
    {
        background-color: black;
        cursor: pointer;
    }

    #email-copied-prompt-span
    {
        width: 30%;
        height: 5vh;
        position: relative;
        left: 0;
        bottom: 3vw;
        display: block;
        margin: 0 auto;
        z-index: -50;
        transition-duration: 0.5s;
        border-radius: 2vw;
        border: 0.5vh solid black;
    }

    #email-copied-prompt-h4
    {
        text-align: center;
        font-size: 1vw;
        transition-duration: 0.5s;
        padding-top: 1vh;
    }


@media (max-width: 800px)
{
    .contact-link
    {
        font-size: 90%;
    }

    #email-copied-prompt-span
    {
        width: 80%;
        height: 5vh;
        position: relative;
        left: 0;
        bottom: 4vh;
        display: block;
        margin: 0 auto;
        z-index: -50;
        transition-duration: 0.5s;
        border-radius: 2vw;
        border: 0.25vw solid black;
    }

    #email-copied-prompt-h4
    {
        text-align: center;
        font-size: 3vw;
        transition-duration: 0.5s;
        padding-top: 1vh;
    }
}