header{
    background-color: rgb(156, 0, 0);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px;
    align-items: center;
    max-width: 2000px;
}

nav img{
    width: 70px;
}

.nav-mobile-images{
    display: none;
}

ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

li{
    padding:15px;
    margin: 0 5px;
    font-weight: bold;
    transition: 0.2s;
    font-size: 24px;
    opacity: 80%;
}

li:hover{
    box-shadow: 3px 3px 5px rgb(61, 0, 0);
    border-radius: 10px;
    opacity: 100%;
    margin-bottom: 5px;
    margin-right: 10px;
}

@media screen and (max-width: 791px) {
    .nav-mobile-images{
        display:block;
    }

    nav img{
        width: 50px;
    }
    
    ul{
        display: none;
    }

}