@charset "UTF-8";
/* CSS Document */


body{
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    font-family: 'IBM Plex Mono', monospace;
    background-color: #202020;
    color: #ddd;
    
    margin: 20px;
    margin-top: 10px;
    
    font-size: 3.5vw;
}

hr{
    border: none;
    border-bottom: solid 1px #000;
    margin-bottom: 1vw;
    margin-left: -20px;
    margin-right: -20px;
}

.infos{
    font-size: 1.1vw;
    display: inline-block;
    margin-left: -1.5vw;
}
.infos.last{
    margin-left: 6px;
}

.infos.last-bis{
    margin-left: 12px;
}

.about{
    display: none;
}

a, a.active, a.visited, u, .more{
    color: inherit;
    text-decoration: none;
    
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a.ext{
    border-bottom: solid 0.15vw;
}

.more:hover, a:hover{
    cursor: pointer;
    border-bottom: none;
    color: #00f;
}

.down{
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


.right-more{
    display: inline-block;
    transform: rotate(-90deg);
}

img{
    display: inline-block;
    height: 3.5vw;
    width: auto;
    border-radius: 0.1vw;
    display: block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.bckgrnd{
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: -0.6vw;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    
}

.bckgrnd.left{
    margin-left: 5px;
}

.bckgrnd.point{
    margin-right: 3px;
}


a:hover img{
    -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
    mix-blend-mode: screen;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a:hover .bckgrnd{
    background-color: #00f;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* Smartphones ------------------------------------------------------------------ */

@media only screen and (max-width: 870px) {
    
    body{
        font-size: 24px;
         word-break: break-word;
         -webkit-hyphens: auto;
         -moz-hyphens: auto;
         -ms-hyphens: auto;
         -o-hyphens: auto;
         hyphens: auto;
    }
	
    .infos{
        display: block;
        position: relative;
        float: left;
        clear: left;
        width: calc(100% - 0px);
        font-size: 12px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .bckgrnd{
        display: none;
    }
	
    a.ext{
        border-bottom: solid 1px #aaa;
    }
    
    hr {
        position: relative;
        float: left;
        width: calc(100% + 40px);
        margin-bottom: 12px;
        margin-top: 14px;
    }
    hr.resp{
        margin-top: -2px;
    }
    
    .infos.last-bis, .infos.last{
        margin-left: 0px;
    }
}