body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(36, 100%, 99%);
}

p {
    font-size: 19px;
    color: hsl(236, 13%, 42%);
}

h1 {
    font-size: 4em;
    font-weight: 800;
    color: hsl(240, 100%, 5%);
}

h2 {
    font-size: 2.2em;
    font-weight: 700;
}

h3 {
    font-size: 1.4em;
    font-weight: 700;
}

h4 {
    font-weight: 700;
    font-size: 1.3em;
}

hr {
    color: #fff;
}

section {
    padding: 1% 10%;
}

button {
    padding: 8px 24px;
    border: none;
    font-size: 1.1em;
    font-weight: 700;
    background-color: hsl(5, 85%, 63%);
    color: #fff;
    margin-bottom: 5px;
    transition: all 0.2s ease;
}

button:hover {
    background-color: hsl(240, 100%, 5%);
}


/* Navigation */

.navigation {
    padding: 5% 10% 2.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.logo {
    width: 60px;
}

.navLinks {
    list-style: none;
}

.navLinks li {
    display: inline-block;
    padding-left: 10px;
    margin-left: 10px;
    text-align: right;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px;
    border-radius: 2px;
    transition: 0.4s ease;
}

li,
a {
    color: hsl(236, 13%, 42%);
    text-decoration: none;
}

a:hover,
.bottomText h4:hover {
    transition: all 0.3s ease;
    color: hsl(5, 85%, 63%);
}

.blackSection h3:hover {
    transition: all 0.3s ease;
    color: hsl(35, 77%, 62%);
}

.col {
    margin: 5px;
}

.orange {
    color: hsl(35, 77%, 62%);
}

.grey {
    color: hsl(233, 8%, 79%);
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.mainImage {
    width: 100%;
}

.blackSection {
    background: hsl(240, 100%, 5%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 20px;
    margin-top: 0;
}

.blackSection h3 {
    color: #fff;
}

.blackSection p {
    color: hsl(236, 13%, 42%);
}

.bottomImg img {
    width: 100%;
}

.bottomImg {
    padding: 0px;
    display: flex;
    align-items: center;
}

.bottomText {
    padding-left: 15px;
}

@media screen and (max-width: 800px) {
    section {
        padding: 1% 7%;
    }

    p {
        font-size: 13px;
    }

    h1 {
        font-size: 2em;
    }

    .logo {
        width: 38px;
    }

    .navigation {
        padding: 5% 7% 2.5%;
    }

    .navLinks {
        position: absolute;
        right: 0px;
        height: 99vh;
        top: 8vh;
        background-color: hsl(36, 100%, 99%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;
        transform: translateX(100%);
        transition: 0.8s ease;
        justify-content: space-evenly;
    }

    .navigationActive {
        transform: translate(0);
    }

    .navLinks li {
        opacity: 0%;
    }

    .burger {
        display: block;
    }

}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);

}