body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url("background.jpg"); /* ton image libre de droits */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.links img {
    width: 150px;
    margin: 10px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.links img:hover {
    transform: scale(1.05);
}

.info a {
    font-size: 18px;
    color: #0066cc;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
}

