body {
    background-color:#0a0a0a;
    color:white;
    font-family: "Montserrat", sans-serif;
}
.retour {
    width: 8vh;
    height: 8vh;
    padding-top: 2vh;
}
header {
    display: flex;
}
header div {
    display: flex;
    width: 100%;
}
.logo {
    height: 10vh;
    width: 10vh;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

main h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}


.container:hover {
    background-color: #333;
    transform: scale(1.02);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
