* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

h2 {
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #82c1fb !important;
}

/* new nav menu */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.navigation {
    display: flex;
    text-decoration: none;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.pages {
    font-weight: 500;
    font-size: 20px;
    z-index: 5;
}

.navigation a {
    margin: 0 20px;
    transition: 0.2s;
}

.navigation a:hover,
.navigation a.active {
    text-decoration: none;
    color: #ffffff !important;
}

.spacer {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
}