* {
    box-sizing: border-box;
    margin: 0;
    cursor: none;
}

body {
    width: 100%;
    font-family: 'Avenir', sans-serif;
    cursor: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.divContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-gro: 1;
}

.divContainer h1{
    font-style: normal;
    color: black;
    font-size: 4em;
    margin: 0.5em;
}

.divContainer h1 i{
    color: rgb(255, 0, 0);
}

.p-large{
    padding: 3em;
}

/* COMPTÉTENCES */
.comp{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 30px;
}

.comp img{
    height: 100px;
    width: auto;
}

/* CV VIDEO */
.cv-video{
    display: flex;
}

.cv-video video{
    margin: 0 auto;
    box-shadow: 12px 12px 2px 1px rgba(70, 157, 221);
}

.project-title {
    text-align: center;
    padding: 1.5em 0 0.5em 0;
    text-decoration: none;
}


.project-title-a{
    text-align: center;
    padding: 1.5em 0 0.5em 0;
    text-decoration: none;
    color: rgb(70,157, 221);
}

.project-title-a:hover{
    color: rgb(255, 0, 0);
}


/*footer{
    display: flex;
    background-color: lightgray;
}


footer div{
    display: flex;
}*/

/*? FOOTER */
footer{
    display: flex;
    flex-direction: column;

    width: 100%;

    background-color: lightgray;
    color: black;
}

footer .texte{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    padding: 40px;
}

footer .titre{
    justify-content: center;
    align-items: center;
    text-align: center;

    font-size: 1.5em;
    margin: 0 auto;
}


footer #contact{
    padding-top: 1em;
    text-transform: uppercase;
    font-weight: bold;
}

footer .social{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2em;
    padding-bottom: 0;
}

footer .social svg{
    margin: 1em;
    margin-bottom: 0;

    padding: 1em;
    border-radius: 7em;

    background-color: white;
}

footer .social svg:hover{
    background-color: #FDF035;
}

footer .copyright{
    display: flex;

    margin: 1.5em auto;

    font-size: small;
}

footer span a{
    padding: 0.5em;
    text-decoration: none;
    color: black;
}

footer span a:hover{
    background-color: red;
    border-radius: 0.3em;
    color: white;
}

footer span .bleu:hover{
    background-color: rgb(70, 157, 221);
    border-radius: 0.3em;
    color: white;
}

.contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contenu a {
    margin-top: 3em;
    width: 30%;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: red;
    padding: 0.3em;
    border-radius: 0.3em;
}

.contenu a:hover{
    background-color: rgb(70, 157, 221);
}

		