@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

body {
    background-color: #1a0d2b;
    color: #e5c100;
    font-family: 'Cinzel', serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 600px;
    padding: 30px;
    border: 2px solid gold;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

h1 {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    margin: 5px 0;
    color: #fff;
}

.follow-text {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
}

.instagram-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    transition: 0.3s;
    display: inline; /* Texte sur la même ligne */
    margin-left: 5px;
}

.instagram-link:hover {
    background-color: gold;
    color: #5e2673;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 5px;
}
