
main {
    min-height: calc(100vh - 300px);
    background-color: #d3e8fb;
    background-image: linear-gradient(to bottom right, #e0e9f1, #9ECCF6);
    max-width: 100vw;
    overflow: clip;
}

img {
    object-fit: cover;
}

* {
    font-family: "Fira Sans";
    margin: 0;
    color: #575757;
}

section {
    max-width: 100vw;
}

/* HEADER */


header {
    display: flex;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px #00000078;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 8px 40px;
}

.footer-inner, .header-inner {
    width: min(90vw, 1000px);
}

.header-logo, .footer-logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 14px;
}

.logo-text * {
    margin: 8px 0; 
}

.logo-text h1 {
    font-family: "Montserrat Alternates";
    font-weight: 500;
}

.header-logo .logo-text h1 {
    color: #003C73;
}

.logo-text h2 {
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-nav {
    /* display: flex; */
    display: none;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    color: #003C73;
    text-decoration: none;
    font-size: 20px;
}


/* FOOTER */

footer {
    background: #084883;
    background: linear-gradient(90deg,rgba(8, 72, 131, 1) 0%, rgba(0, 29, 55, 1) 89%, rgba(12, 45, 79, 1) 100%);
    padding: 60px;
    display: flex;
    justify-content: center;
}

footer * {
    color: white;
}

.verse {
    margin-bottom: 60px;
}

.verse p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 40px;
    font-weight: 200;
}

.verse h2 {
    font-size: 22px;
    font-family: "Courgette";
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-logo img {
    width: 80px;
}

/* socials */

footer .socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
}

footer .socials a {
    display: flex;
    text-decoration: none;
    color: white;
    align-items: center;
    gap: 12px;
}

footer .socials a img {
    width: 26px;
}

footer .socials a h3 {
    font-weight: 400;
    font-style: italic;
}

/* MOBILE STUFFS */

@media only screen and (max-width: 700px) {

    /* HEADER */

    .header-inner {
        padding: 0 20px;
    }

    .header-nav {
        display: none;
    }

    .header-logo .logo img, .footer-logo .logo img {
        width: 50px;
    }

    .header-logo h1, .footer-logo h1 {
        font-size: 18px;
    }

    .header-logo h2, .footer-logo h2 {
        font-size: 14px;
    }


    /* FOOTER */

    footer {
        padding: 30px;
    }

    .verse p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .verse h2 {
        font-size: 18px;
    }

    footer .socials h3 {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .copywright {
        font-size: 10px;
    }
}