* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #111, #000);
    color: #FFD700;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
}

/* MENU */
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #FFD700;
    transition: 0.3s;
}

nav a:hover {
    color: #00aa00;
}

/* SECTION PRINCIPALE */
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

/* CARTE */
.card {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    width: 700px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    text-align: center;
}

/* TITRE */
h1 {
    margin-bottom: 20px;
}

/* TEXTE */
p {
    line-height: 1.6;
    color: #ddd;
}

/* IMAGE LOGO */
.logo-img {
    width: 100px;
    margin-bottom: 20px;
}
a:visited {
    color: FFD700;
}
footer {
    position: relative; /* nécessaire pour que top fonctionne */
    top: -50px;
    text-align: center;
    color: #FFD700; /* ajout du # pour une couleur valide */
    font-size: 10px;
}