header {    
    display: flex; 
    height: 12rem;    
    justify-content: center;    
}

header .container {    
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
header .container .logo {
    display: flex;
    align-items: center;
}
header nav ul {
    display: flex;
    gap: 3rem;
}

header nav ul,  
header nav li {
    list-style: none;
    text-decoration: none;    
}

nav a {    
}

header nav li a {
    display: block;
    color: var(--primary);
    padding: 1.5rem;
    text-decoration: none;
}

header nav li a:hover {
    color: rgba(0, 0, 0, 0.5);
}
