.header{
    background-color: #1A1A1A;
    padding: 0px;
    height: 80px;
    align-items: center;
    align-content: center;
}

.logo{
    max-width: 160px;
}


.off-screen-menu{
    background-color: #1A1A1A;
    height: 100%;
    width: 100%;
    max-width: 258px;
    position: fixed;
    top: 0;
    color: white;
    display: flex;
    right: -1000px;
    align-items: flex-start;
    padding-top: 100px;
    flex-direction: column;
    font-size: large;
    transition: .7s ease-out;
    z-index: 10;
}

.off-screen-menu li{
    margin-top: 10px;
    transition: .5s ease;
}

.off-screen-menu li:hover{
    font-size: larger;
    margin-top: 4px;
    background-color: #FF0037;
}

.off-screen-menu.active{
    right: 0;
}

.off-screen-menu ul{
    list-style: none;
}

nav{
    padding: 1rem;
    display: flex;
    background-color: #1A1A1A;
}

nav img{
    max-height: 60px;
}
@media screen and (min-width: 768px) {
    nav{
        padding-left: 100px;
        padding-right: 100px;
    }
}