/* CSS Variables */
:root {
    --primary-color: #9899cc;
    --secondary-color: #6698cb;
    --navigation-bg: black;
    /* --hamburger-bg: #cb3332; */
}

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

html {
    font-family: "puffin", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: aliceblue;
}

main h2 {
    font-family: "gelica", sans-serif;
    font-weight: 600;
    font-style: italic;
}


aside h1 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: black;
    font-size: 2rem;
    display: block;
    font-weight: bold;
    margin-top: 120px;
    display: block;
    padding: 0;
    color: #2A2A2A;
    font-family: Helvetica;
    font-style: normal;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: normal;
    padding-right: 29px;
    padding-bottom: 29px;
    padding-left: 29px;

}

aside h2 {
    margin-top: 2rem;
    font-family: helvetica;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-align: center;
    color: #686868;
    line-height: 2.5rem;
    padding-top: 0;
    padding-right: 29px;
    padding-bottom: 29px;
    padding-left: 29px;
}

aside h2 {
    font-size: 1.5rem;
}

div.mcnButtonBlock_mcnButtonBlockInner {
    display: flex;
    justify-content: center;
    padding-top: 0;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

div.mcnButtonBlock_mcnButtonBlockInner div a {
    font-weight: normal;
    /* letter-spacing: -0.5px; */
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    background-color: #000000;
    box-shadow: none;
    padding: 24px 28px;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;

}

footer p {
    text-align: center;
}




header div img.logo {
    width: 50%;
    position: relative;
}

header {
    /* display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    justify-content: center; */
    height: 5rem;
}



nav.responsive-nav {
    /* background-color: #cb3332; */
    position: absolute;
    right: 0px;

}


header {
    /* background-color: var(--navigation-bg); */
}




a {
    text-decoration: none;
}




footer {
    background-color: var(--secondary-color);
    padding: 1em;
}

footer p {
    color: white;
}

footer p.copyright {

    text-align: center;

}

.responsive-nav .nav-items {
    background-color: var(--hamburger-bg);
    list-style: none;
    padding: 0;
    display: none;
}

.responsive-nav .nav-items a {
    text-decoration: none;
    /* color: white; */

}

.responsive-nav button {
    border: none;
    background-color: var(--hamburger-bg);
    color: black;
    font-size: 1em;
}


footer ul li {
    list-style: none;
    display: list-item;
}



/* Medium Layout - based on medium.jpg mockup */
@media screen and (min-width: 600px) {
    header div img.logo {
        width: 35%;
        position: relative
    }

    aside.hero {
        display: block;
        height: 400px;
        width: 100%;
        background-image: url("../media/hero_2.jpeg");
        background-size: cover;
        background-position: center;
        /* display: flex;
        justify-content: center;
        align-items: center; */
    }

    aside h1 {
        font-size: 2.4rem;
        margin-top: 100px;
    }

    .responsive-nav .nav-items li a {
        font-size: 1rem;
    }  

    header {
        grid-template-columns: 1fr 1.5fr 1.5fr;
        height: 4rem;
    }

    

    aside.hero img {
        width: 100%;
    }


    .responsive-nav .hamburger {
        display: none;
    }

    .responsive-nav .nav-items {
        display: flex;
    }

    .responsive-nav .nav-items li {
        margin: 1em;
    }

}

/* Medium Layout - based on medium.jpg mockup */
@media screen and (min-width: 700px) {
    aside h1 {
        margin-top: 11rem;
    }
}

/* Wide Layout - based on wide.jpg mockup */
@media screen and (min-width: 1000px) {

    header div img.logo {
        width: 30%;
        position: relative
    }

    aside.hero {
        /* display: block; */
        height: 400px;
        width: 100%;
        background-image: url("../media/hero_2.jpeg");
        background-size: cover;
        background-position: center;
        /* display: flex; */
        /* justify-content: center;
        align-items: center; */
    }

    aside h1 {
        font-size: 3.97rem;
        margin-top: 16rem;
    }

    aside h2 {
        font-size: 1.8rem;
    }

    

    aside.hero {
        margin-top: 30px;
    }

    aside.hero img {
        width: 100%;
    }



    

    .responsive-nav .hamburger {
        display: none;
    }

    .responsive-nav .nav-items {
        display: flex;
    }

    .responsive-nav .nav-items li {
        margin: 1em;
    }

    .responsive-nav .nav-items li a {
        font-size: 1.5rem;
    }  

    }



