body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
}

.container {
    text-align: center;
    max-width: 90%;
    padding: 20px;
}

.center-image {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.message {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.4;
}

.handwritten {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
}

@media (max-width: 600px) {
    .handwritten {
        font-size: 1.4rem;
    }
    .message {
        font-size: 1.1rem;
    }
    .center-image {
        max-width: 250px;
    }
}

.instagram-link {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.instagram-link a {
    color: #8B4A5C; /* Bordeaux foncé */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-link a:hover {
    color: #C46B7F; /* Bordeaux clair au survol */
    text-decoration: underline;
}
