header{
    background-color: #111;
    color: #eee;
    width: 100%;
    height: 300px;
    background-image: url(../images/bg-header.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;    
}

header{
    display: flex;
    flex-direction: column;
    
}


.logo{
   
    z-index: 100;
    width: fit-content;
    height: auto;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
    padding: 2rem;
    
}
.logo .title{
    font-size: 7rem;
    font-weight: 600;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 3px 3px #555;  
}
.logo .slog{
    color: #eee;
    font-size: 3.8rem;
     text-shadow: 0 3px 3px #555; 
    
}
nav{
    background-color: #111;
    margin-top: -2rem;
    
    
}
nav ul{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}
nav li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 2rem;    
    color: #fff;
    font-size: 1.8rem;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
nav li a:hover{
    background-color: #fff;
    color: #111;
}