@font-face {
    font-family: 'isocpeur';
    src: url('../fonts/isocpeur.woff2') format('woff2'),
         url('../fonts/isocpeur.woff') format('woff'),
         url('../fonts/isocpeur.ttf') format('truetype'),
         url('../fonts/isocpeur.svg') format('svg'),
         url('../fonts/isocpeur.eot') format('eot');
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: isocpeur;
}

body {
    margin: 2vw;
}

a {
    color: black;
}

p {
    margin: 0;
}

h1, h2 {
    font-weight: normal;
    margin: 0;
}

#bio {
    max-width: 800px;
    margin: 0;
}

.quote, .lk, .social {
    margin: 10vh 0;
}

.quote p {
    line-height: 1.5;
}


.social a img {
    margin-right: 10px;
}

.social a img {
    margin-right: 0;
}

/* Media Queries pour responsive design */

@media (max-width: 768px) {
    #bio {
        max-width: 90%; /* Réduction de la largeur pour les tablettes */
    }
    
    .quote, .lk, .social {
        margin: 5vh 0; /* Réduction des marges pour les écrans moyens */
    }
}

@media (max-width: 480px) {
    body {
        margin: 5vw;
    }
    
    #bio {
        max-width: 100%; /* Largeur maximale pour les petits écrans */
        margin: 0 auto;
    }
    
    .quote, .lk, .social {
        margin: 10vh 0; /* Réduction des marges pour les petits écrans */
    }
    
    .social a img {
        width: 30px; /* Réduction de la taille des icônes pour les petits écrans */
        height: 30px;
    }
}
