:root {

    --primaryColor: #0076de;
    --whiteColor: #fff;
    --blackColor: #333;
    --greyColor: #f6f8fa;
    --labelColor: #64b1f5;
    -yellowColor: #ffd723;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Nunito',sans-serif;
}
body{
    width: 100%;
    height: auto;

}
h1{
    line-height: 1.5;
}
.navbar{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem 2.5rem;
    z-index: 10;
    color: var(--whiteColor);
    background: black;
}
.navbar-logo > a {
letter-spacing: 2.5;
text-decoration: none;
color: var(--whiteColor);

}
.navbar-menu{
    width: 400px;
    display: flex;
    justify-content: space-between;

}
.navbar-menu> a{
    color: var(--whiteColor);
    text-decoration: none;
}

.menu-toggle{
    display: block;

}
.menu-toggle .bar{
    width: 15px;
    height: 2px;
    margin: 3px auto;
    transition: all 0.3 ease-in-out;
    background-color: var(--whiteColor);
    cursor: pointer;
}
header{
    width: 100%;
    height: 80%;
    background-image: ;
}