/* Media Queries */
@media screen and (max-width: 768px) {
    .cover {
        margin-top: 10vh;
        height: 100%; /* Prend l'espace restant */
        flex-direction: column;
    }

    .cover .text {
        width: 90%;
    }

    .cover .text p:nth-child(1) {
        font-size: 2rem; /* Taille adaptée aux petits écrans */
    }

    .cover .text a {
        font-size: 1rem;
        padding: 10px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {
    .cover {
        height: calc(100vh - 10vh); /* Prend l'espace restant */
    }

    .cover .text p:nth-child(1) {
        font-size: 1.5rem; /* Taille réduite pour les très petits écrans */
    }

    .cover .logo__illustration {
        width: 100%;
    }
}