
.header {
    display: flex;
    padding: 20px;
    text-align: center;
    font-size: 26px;
    max-width: 1400px;
    margin: auto;
    align-items: center;
}

.header li {
    margin: 24px;
    list-style-type: none;
    font-family: 'Viga', sans-serif;
    font-weight: 100;
    transition: all 0.3s ease;
}

.header li:hover {
    /* text-decoration: underline; */
    transform: scale(1.1);
    color: #2964B1;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

.icon {
    justify-content: left;
    width: 500px;
}

.menu {
    display: none;
    width: 64px;
    justify-content: right;
    margin-left: auto;
    z-index: 10;
}

body {
    /* background-image: url('https://canmancan.com/wp-content/uploads/cans3.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* The secret ingredient */
}

p {
    font-family: 'Viga', sans-serif;
    font-weight: 900;
    text-align:center;
    max-width: 550px;
    font-size: 64px;
    margin: auto;
}


.primary-content {
    display: flex;
    padding: 20px;
    text-align: center;
    font-size: 26px;
    max-width: 1400px;
    height: 600px;
    margin: auto;
    align-items: center;
}

.secondary-content {
    display: flex;
    padding: 20px;
    text-align: center;
    font-size: 26px;
    max-width: 1400px;
    height: 1000px;
    margin: auto;
    align-items: center;
}

.footer {
    background-image: linear-gradient(to right, #2964b1 , #26b170);
    height: 300px;
}

.primary-content img {
    width: 50%;
}

.sidenav {
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    background-color: #0c2d57;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 100px;
    display: none;
}

.sidenav a {
    margin: 24px;
    list-style-type: none;
    font-family: 'Viga', sans-serif;
    font-weight: 100;
    transition: all 0.3s ease;
    color: rgb(11, 138, 45);
    display: block;
    font-size: 24px;
}

.sidenav a:hover {
    /* text-decoration: underline; */
    transform: scale(1.1);
    color: #ffffff;
}

@media (max-width: 1050px) {
    .header nav {
        display: none;
    }
    .menu {
        display: block;
    }
    .sidenav {
        display: block;
    }
    .primary-content {
        flex-direction: column;
    }
}

@media (max-aspect-ratio: 11/16) or (max-width: 600px) {
    .icon {
        width: 87.5%;
    }
    .menu {
        width: 12.5%;
    }
    .header {
        padding: 0px;
    }
    .primary-content img {
        width: 100%;
    }
    p {
        font-size: 48px;
    }
    body {
        margin: 0px;
        width: 100%;
    }
}

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

