* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000; /* Fond noir */
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center; /* Centrer le texte dans les éléments */
}

.logo {
    width: 450px; /* Taille du logo agrandie */
    margin-bottom: 30px; /* Espace entre le logo et le bouton */
}

.catalogue-link {
    display: inline-block;
    padding: 15px 30px;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #b08968, #d4af37, #b08968); /* Gradient doré plus subtil */
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.1); /* Ombre plus légère */
    border: 1px solid #8a6e3c; /* Bordure fine pour l'effet doré */
    margin-bottom: 20px;
}

.catalogue-link:hover {
    transform: scale(1.05); /* Effet d'agrandissement léger */
    background: linear-gradient(90deg, #a67c52, #c99e3e, #a67c52); /* Gradient un peu plus sombre au survol */
}
