/* Style général */
body {
    background-image: url('../images/source.png');
    background-size: cover;
    background-position: center;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

.content-box {
    background-color: rgba(0, 0, 0, 0.8); 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    text-align: center; 
    width: 90%;
    max-width: 400px; 
}

h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

a {
    text-decoration: none;
    color: #00d8ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff4081;
    text-decoration: underline;
}

.menu-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px 16px;
    font-size: 14.4px;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    border: 1px solid white;
    transition: background-color 0.3s ease;
}

.menu-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
	color: white;
	text-decoration: none;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 10px;
    background-color: #444;
    color: white;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .menu-button {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    footer {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .content-box {
        width: 95%;
    }
}
