body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #f1f5f8;
    line-height: 2.2;
    font-size: 0.875rem;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
nav{
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.fa-bars{
    font-size: 1.5rem;
    color: #e94949;
    cursor: pointer;
    
}
.fa-bars:hover{
    color: black;
}
.menu a{
    color: grey;
    letter-spacing: 0.1rem;
    display: block;
    padding: 0.5rem 1rem;
    transition: all 0.3s linear;

}
.menu a:hover{
    background: #f8a5a5;
    color: #e94949;
    padding-left: 1.5rem;
}
.menu{
    height: 0;
    overflow: hidden;
    transition: all 0,3s linear;
}
.show-menu{
    height: 10rem;
}
.nav-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-top: -50px;
}
@media (min-width: 800px){
    .nav-main{
        max-width: 1170px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }
    .nav-header{
        padding: 0;
    }
    .fa-bars{
        display: none !important;
    }
    .menu{
        height: auto;
        display: flex;
    }
    .menu a{
        padding: 0;
        margin: 0 0.5rem;
    }
    .menu a:hover{
        padding: 0;
        background: transparent;
    }
}