body {
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    color: rgb(5, 14, 26);
    
    background-color: ivory;
    background: linear-gradient(rgb(151, 226, 245), rgb(130, 174, 231));
    
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 160%;
}
.title{
    font-family: 'Righteous', cursive;
}

.title--main {
    font-size: 43px;
}
.title--big{
    font-size: 31px;
    padding-top: 30px;
}
.title--small {
    font-size: 22px;
    padding-top: 20px;
}
.write{
    margin-left: 20px;
}

.konamipic{
    width: 98%;
    height: auto;
}
.hidden {
    display: none;
}
.main{
    display: flex;
    margin: 20px;
    justify-content: space-between;
    flex-direction: column;
    min-width: 140px;
}
.text {
    padding-bottom: 5px;
    padding-top: 5px;
    max-width: 600px;
}

.image {
    padding: 10px;
    min-width: 100px;
    max-width: 300px;
}
.image img {
    width: 100%;
    border-radius: 20px;
}

ul {
    padding: 8px;
    list-style: none;
}

ul li{
    padding: 5px;
}

.code {
    display: flex;
    justify-content: space-around;
    /*
    background-color: rgba(95, 180, 20, 0.95);
    border-radius: 10px;
    border: solid 3px;
    */
    padding: 5px;
}
.code--el a{
    height: 50px;
    width: 50px;
    overflow: hidden;
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition-property: background-color, height, width;
    transition-duration: 0.7s;
    transition-delay: 0.05s;
}
.code--el a:hover{
    background-color: grey;
}
.code--el__html a{ 
    background-image: url(images/html.svg);
}
.code--el__css a{
    background-image: url(images/css3.svg);
}
.code--el__js a{
    background-image: url(images/javascript-4.svg);
}
.code--el__php a{
    background-image: url(images/php.svg);
}

.works{
    display: flex;
    flex-direction: column;
    background-color: midnightblue;
    border-radius: 8px;
    box-shadow: black 2px;
}
.works--el{
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    transition-property: background-color;
    transition-duration: 0.7s;
    transition-delay: 0.3s;
}
.works--el a{
    text-decoration: none;
    color: white;
}
.works--el__cv{
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: red;
    border: solid 3px brown;
}
.works--el__cv:hover{
    background-color: firebrick;
}
.works--el__elem{
    margin-top: 7px;
    margin-bottom: 7px;
    background-color: red;
    border: solid 3px brown;
}
.works--el__elem:hover{
    background-color: red;
}
.works--el__separator{
    border-top: solid 1px whitesmoke;
    padding-top: 5px;
    margin-bottom: 5px;
}

.reseaux {
    display: flex;
    justify-content: space-around;
}
.reseaux--el{
    height: 50px;
}
.reseaux--el a{
    height: 50px;
    width: 50px;
    border-radius: 6px;
    overflow: hidden;
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition-property: background-color;
    transition-duration: 0.7s;
    transition-delay: 0.3s;
    
}
.reseaux--el a:hover{
    background-color: grey;
}
.reseaux--el__twitter a{

    background-image: url(images/iconmonstr-twitter-4.svg);
}

.reseaux--el__mail a{

    background-image: url(images/iconmonstr-email-10.svg);
}
.reseaux--el__linkedin a{

    background-image: url(images/iconmonstr-linkedin-4.svg);
}
.reseaux--el__facebook a{

    background-image: url(images/iconmonstr-facebook-4.svg);
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {

   
}

@media (min-width: 660px){

    .main {
        flex-direction: row;
    }
    .image {
        min-width: 200px;
        max-width: 400px;
    }
    .text {
        padding: 5px 10px;
        font-size: 20px;
        line-height: 180%;
        min-width: 300px;
    }
    .rightSide{
        margin-left: 12px;
    }
    .contact{
        border: none;
        background-color: unset;
    }
    .contact h3{
        text-align: center;
    }
    .code--el a{
        height: 80px;
        width: 80px;
    }
    .reseaux{

        flex-direction: column;
        align-items: center;
        min-width: 200px;
        max-width: 400px;
        height: 300px;
    }
}

@media (min-width: 1100px){
    html{
        height: auto;
    }
    .main {
        flex-direction: row;
    }
    .image {
        margin-top: 25px;
        width: 30%;
    }
    .image img {
        width: 90%;
        max-width: max-content;
    }
    .text {
        width: 50%;
        max-width: 800px;
    }
    .contact {
        width: 20%;
    }
    .works{
        margin: 16px;
    }
    .works--el__cv, .works--el__elem{
        background-color: transparent;
        border-color: transparent;
    }
    .reseaux {
        flex-direction: row;
        align-items: unset;
    }
    .reseaux--el a{
        width: 60px;
        height: 60px;
    }
    .code--el a{
        height: 100px;
        width: 100px;
    }
    .code--el a:hover{
        height: 116px;
        width: 116px;
    }
}