* {
    box-sizing: border-box;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: hsl(207.04, 31%, 44.9%);
    height: 100vh;
}

/* Header Styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    flex: 0;
    align-items: center;
    background-color: hsl(204, 31.54%, 21.77%);
    min-height: clamp(75px, 10vh, 10vh);
}

.logo-link {
    height: 100%;
}

.logo {
    min-height: 70%;
    margin-top: 7.5%;
    margin-left: 7.5%;
}

.header-nav {
    display: flex;
    height: 100%;
    align-items: center;
    margin-right: 5%;
}

.header-link {
    text-decoration: none;
    color: white;
    font-family: sans-serif;
    font-weight: 300;
    padding-left: 2.5em;
    font-size: medium;
}

/* Hamburger Menu Styling (Mobile) */
/* ------------------------------------------ */
.menu-icon {
    display: none;
    background: none;
    border: none;
}

.menu {
    display: none;
}

.show-menu {
    display: block;
    list-style-type: none;
    padding-left: 0;
    text-align: center;
    background-color: hsl(204.12, 48.16%, 62.59%)
}

.show-menu li {
    width: 100vw;
    padding: 5%;
}

.show-menu a {
    text-decoration: none;
    color: white;
    font-size: 3vh;
    font-family: sans-serif;
}

/* ------------------------------------------ */

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .menu-icon {
        display: block;
        margin-right: 3vw;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */

/* Main Styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slogan {
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 3em;
    font-weight: bold;
    margin-top: 5vh;
    padding-left: 20px;
    padding-right: 20px;
}

.slogan-question {
    color: white;
    font-family: sans-serif;
    margin-top: 2em;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: lighter;
}

@media (max-width: 768px) {
    .slogan {
        font-size: 1.8em;
    }

    .slogan-question {
        font-size: 1em;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */

/* Footer Styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: hsl(204, 31.54%, 21.77%);
    min-height: clamp(120px, 16vh, 16vh);
}

.brand-and-links {
    display: flex;
    flex: 0 15vw;
    flex-direction: column;
    justify-content: center;
    /* Added */
    height: 100%;
}

.bottom-logo-link {
    width: 100%;
    height: 50%;
    display: flex;
    /* align-items: flex-end; */
    padding-left: 20%;
    padding-right: 10%;
}

.logo-bottom {
    height: 70%;
}

/* .social-media-links {
  display: flex;
  padding-left: 19%;
}

.social-media-logo {
  max-height: 30px;
} */

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 50px;
    padding-top: 1em;
}

.contact-line {
    margin-top: 5%;
    color: white;
    font-family: sans-serif;
}

.contact-line-last {
    margin-top: 5%;
    margin-bottom: 12%;
    color: white;
    font-family: sans-serif;
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */