h1 {
    font-size: 6vw !important;
    margin-left: 20px;
    color: black !important;
}

@media screen and (max-width: 480px) {
    .header-title {
        font-size: 10vw !important;
    }
}

@media screen and (max-width: 480px) {
    .nav-link {
        font-size: 3vw !important;
    }
}

@media screen and (max-width: 480px) {
    .navbar-nav {
        margin-left: 20px;
        display: flex !important;
        flex-direction: row !important;
    }
}

/* Rideau initial couvrant toute la page */
.curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.7s ease-in-out;
    cursor: url('../images/photos/souris_blanche.png'), auto;
}

/* Texte "Maylis Chopin" SUR le rideau */
.intro-text {
    font-size: 6vw;
    color: white;
    position: absolute;
    bottom: 20px; /* Il commence en bas */
    left: 40px;
    transition: transform 0.7s ease-in-out, color 0.7s ease-in-out, left 0.7s ease-in-out;
}

/* Lorsque la page est activée */
body.active .curtain {
    transform: translateY(-100%);
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 5px; /* Ajuste la distance du soulignement */
}

a {
    color: black !important;
    font-size: 1.5vw;
}

