@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --dark-grey: #444444;
    --darker-grey: #2e3a40;

    /* Logo Green */
    --sh-deep-sea-blue: #7d817e;
    --sh-steel-blue: #84a179;
    /* Logo Grey */
    --sh-steel-blue-light: #84a179;


    --sh-purple-red-dark: #251117;
    --sh-purple-red: #3c1b29;


    --sh-grey: #a3a8a9;
    --sh-grey-light: #ebebeb;


    --sh-green: #38a875;
}

body {
    font-family: 'Montserrat', sans-serif;
}

body, p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sh-deep-sea-blue);
    line-height: 1.6;
    text-align: center;
}

a, a:link, a:visited, a:active {
    color: white;
    text-decoration: none;
}
a:hover  {
    color: var(--sh-steel-blue-light);
    text-decoration: none;
}

.mobile {
    display: none;
}

.container {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}

.content {
    margin: auto 20%;
}

.content img {
    width: 500px;
    margin: 0 0 40px 0;
}

.container p {
    font-weight: 500;
    font-size: 18px;
    padding: 5px;
}

.desktop {
    height: 10vh;
    background: var(--sh-deep-sea-blue);
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-top: 4px solid var(--sh-steel-blue);

}

.footer p {
    color: white;
    font-weight: 400;
}

.footer-left, .footer-right {
    margin-top: auto;
    margin-bottom: auto;
}

.footer-left {
    text-align: left;
    margin-left: 20%;
    margin-right: auto;
}

.footer-right {
    text-align: right;
    margin-right: 20%;
    margin-left: auto;
}




@media only screen and (max-device-width: 1480px) {
    .desktop {
        display: none;
    }


    .container {
        height: 73vh;
    }

    .content {
        margin: auto 10%;
    }

    .content img {
        min-width: 320px;
        margin: 0 0 20px 0;
    }

    .container p {
        font-weight: 500;
        font-size: 14px;
        padding: 5px;
    }

    .mobile {
        height: 28vh;
        display: flex;
        background: var(--sh-deep-sea-blue);
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        border-top: 4px solid var(--sh-steel-blue);

    }


    .footer-left, .footer-right {
        padding: 10px 0;
        margin: 0;
    }

    .footer-left {
        text-align: center;

    }

    .footer-right {
        text-align: center;
    }



}
