body {
    background-color: hsl(0, 0%, 5%);
    margin: 0;
    min-height: 100vh; /* Ensures the body takes at least the full viewport height */
    display: flex;
    flex-direction: column; /* Allows stacking of child elements */
}

.container {
    flex: 1; /* Makes the container take up the remaining space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the top */
    height: 100vh;
    padding: 20px;
}

.titre {
    font-size: 4em; /* Adjusted for responsiveness */
    font-weight: bold;
    padding-bottom: 20px;
    margin: 20px 0;
    border-bottom: 3px solid #bbbbaa;
    text-align: center;
}

.Onglets {
    font-size: 16px;
    text-align: center;
    font-family: "Comic Sans MS";
}

.boutons {
    position: absolute;
    top: 40px;
    right: 40px;
}

.Onglets a {
    color: #bbbbaa;
}

.Copyright {
    font-family: sans-serif;
    color: #bbbbaa;
    text-align: center;
    margin-top: auto; /* Pushes the copyright to the bottom */
    padding: 10px 0;
    bottom: 10%;
    right: 10px;
}

.table {
    margin: 0 auto;
}

.subtitle{
    font-size: 2em;
    text-align: center;
}

@media (max-aspect-ratio: 1/1) {
    .titre {
        font-size: 3em;
        margin-top: 25%;

    }

    .boutons {
        top: 10px;
        right: 10px;
    }

    .Copyright {
        font-size: 0.8em;
    }
}