* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    padding: 20px;
    height: 100%;
    background: url('/images/fond_decran_jeu_CTAV_CODIS_2.jpg') no-repeat center center/cover;
}

.cgu-container {
    background-color: #ffffff;
    padding: 40px;
    margin: 0 auto;
    max-width: 900px;
    max-height: 90vh; /* Limiter la hauteur de la conteneur */
    overflow-y: auto; /* Ajouter une barre de défilement si nécessaire */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #28a745;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
    color: #333;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}
