:root {
    --couleur-fond: rgb(200, 71, 255);
    cursor: none;
}

body {
    background-color: white;
    overflow: hidden;
    cursor: none;
}

#omeyr {
    font-size: 1.5em;
}

* {
    padding: 0; margin: 0;
    font-size: 1em;
}

#mainDiv {
    margin-top: 10vh;
    margin-left: 15vw;
    width: 62vw;
    height: 72vh;
    
    overflow: scroll;
    padding: 4vh 4vw;
    background: white;
    /* border: 15px ridge red; */
}

#mainDiv h1 {
    font-family: 'Connection';
    -webkit-font-smoothing: none;
    width: 100%;
}

#jaimeListe li a {
    color: inherit;
}

/* #jaimeListe li a:hover {
    background: black;
} */

#jaimeListe li a:active {
    /* background: black; */
    color: violet;
}

#content {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

#content > * {
    /* min-width: 500px; */
    /* max-width: 48%; */
    width: 48%;
    flex-shrink: 2;
    flex-grow: 2;
}

#intitule:hover {
    opacity: 1;
}

#bio ul {
    list-style: none;
    display: flex;
    
    gap: 0px;
    /* justify-content: space-between; */
    justify-content: left;

    flex-wrap: wrap;
}

#bio ul li {
    margin-right: 20px;
    /* letter-spacing: -1px; */
}

#bio ul li::after {
    content: ',';
}

#bio ul li:last-child::after {
    content: none;
}

#bio ul li:hover {
    transition: .4s;
}

#projects video {
    height: 200px;
    filter: saturate(0);
}

#projects video:hover {
    filter: saturate(1);
}

#curriculum *  {
    list-style: none;
}

#curriculum li ul {
    margin-top: 3px;
    margin-bottom: 20px;
}

.experience em {
    opacity: .4;
}

.listCategory {
    text-decoration: underline;
}

a {
    cursor: none;
}



.categorie {
    font-weight: bold;
}

@media (max-width: 1250px) {

    #mainDiv {
        
        margin-top: 2vw;
        margin-bottom: 2vw;
        margin-left: 2vw;
        width: 88vw;
        height: 100%;

        padding: 4vh 4vw;

    }

    body {
        overflow: scroll;
        /* cursor: default; */
    }

    :root {
        /* cursor: default; */
    }

}