@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap");

/* Common CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* General Body Styles */

body {
    min-height: 100vh;
    background: #f9e9d4;
    overflow-x: hidden;
}

/* Header and Nav */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header .logo {
    color: #626f87;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
}

header .menu {
    display: flex;
    justify-self: center;
    align-items: center;
}

header .menu > li {
    list-style: none;
    margin-left: 20px;
}

header .menu > li .menuItem {
    color: #626f87;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 700;
}

header .menu li .menuItem:hover, 
header .menu li .menuItem.active {
    background: #626f87;
    color: #f9e9d4;
}

/* General Body Styles */

.main-content-body {
    background: #2b3c45;
    position: relative;
    padding: 10vw;
}

.main-content-body h2 {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 10px;
}

.main-content-body p {
    font-size: 1em;
    color: #fff;
    margin-bottom: 20px;
}


/* Footer */

footer {
    position: absolute;
    width:100%;
    margin-top:50px;
    padding: 2% 5%;
    background-color: #2b3c45;
    color: #f9e9d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer a {
    color: #f9e9d4;
}

@media (max-width: 768px) {
    footer {
        padding: 2% 2%;
    }
}

/* Inactive */


.inactive {
    display: none;
    visibility: hidden;
}

