*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color:rgb(83, 78, 78);
}

a,p,li,button{
    text-decoration: none;
    color: white;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-weight: 500;
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
    letter-spacing: .1em;
}

.nav-link li{
    list-style: none;
    display: inline-block;
}

.nav-link li a{
    margin: 0 15px;
    transition: all .3s ease 0s;

}

.nav-link li a:hover{ 
    color: tomato;

 }

 button{
     border: none;
     background-color:#ff5733;
     margin-right: 20px;
     padding: 6px 25px;
     border-radius: 15px;
     font-weight: bold;
     transition: all .3s ease 0s;
 }

 button:hover{
     background-color:  #db3712;
     
 }
