* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
   
}

#logo {
    padding-left: 20px;
    padding-top: 2.5px;
}

nav {
    background-color: white;
    width: 100%;
    height: 80px
}

nav ul {
    list-style: none;
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    padding: 8px 20px;
    font-size: 20px;
    text-transform: capitalize;
}

nav ul li a:hover {
    background-color: black;
    color: white;
}

#checkbtn {
    float: right;
    padding-right: 10px;
    line-height: 80px;
    font-size: 30px;
    color: black;
    display: none;
}

#check {
    display: none;
}

#check:checked ~ ul {
    left: 0;
}