/* Reset de base pour éviter les marges par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/image.png') no-repeat center center fixed;
    background-size: cover;
    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}

h1 {
    font-size: clamp(2rem, 10vw, 5rem);
    text-transform: uppercase;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #d32f2f; 
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

footer p:first-child {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}