body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #800020;
    color: white;
    display: flex;
}

header {
    background-color: #600015;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    border-radius: 8px;
    color: black;
}

.menu {
    background-color: #600015;
    color: white;
    padding: 1rem;
    width: 16vw;
    flex-shrink: 0;
    height: auto;
    position: sticky;
    top: 0;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    margin-bottom: 1rem;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu a:hover {
    text-decoration: underline;
}

.section {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-child {
    border-bottom: none;
}

h2 {
    color: #333;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #600015;
    color: white;
    position : relative;
    bottom : 0;
}

a {
    color: #800020;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}