body {
    background-color: rgb(238, 238, 238);
}
header {
    background-color: #ffffff; 
    color: rgb(128, 128, 128);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 85px;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.5));
}

header #logo {
    height: 50px; 
}

header nav a {
    color: rgb(143, 139, 139);
    margin-left: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}


header nav a:hover {
    transform: scale(0.9);
    color: #be0d0d;
}