main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 92px);
    a {
        text-decoration: none;
    }
}

.main-container {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.titre_audiovisuel, .titre_web, .titre_graphisme, .titre_photographie {
    font-family: 'Mukta';
    font-size: 100px;
    font-weight: 800;
    color: #8889ac; 
    transition: 0.3s ease, color 0.3s ease; 
    white-space: nowrap; /* Empêche le retour à la ligne */
}

.titre_audiovisuel:hover, 
.titre_web:hover,
.titre_graphisme:hover,
.titre_photographie:hover {
    -webkit-text-stroke-color: #8889ac;
    -webkit-text-stroke-width: 1px;
    color: white;
 
}