html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #1d1d1d;
    min-height: 100vh;
}

header {
    height: 10vh;
    background: #5c371a;
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
}

nav ul {
    margin: 0;
    padding: 0;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 5vw;
}

nav a {
    text-decoration: none;
    color: #ffe1c6;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #e68838;
    cursor: pointer;
}

main {
    min-height: 90vh;
    background-image: url(/IMG/manioro.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}