/* 
Reset
*/

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on March 22, 2020 */
@font-face {
    font-family: "vcr_osd_monoregular";
    src: url('fonts/VCR_OSD_MONO_1.001.ttf');

    font-weight: normal;
    font-style: normal;

}

*{
    /* Supprimer toutes les marges */
    padding: 0;
    margin: 0;

    /* IntÃ©grer les padding et les border dans le bloc */
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; /* CSS3 */
}

/* Passer d'une base 16 Ã  une base 10 */
html{
    font-size: 62.5%; /* => 1rem = 10px */
}

body{
    font-size: 1.6rem;
}

a{
    color: inherit;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}
/**/

/*Header*/
header{
    width: 100%;
    height: 20vh !important;
    font-family: "vcr_osd_monoregular", Arial, Helvetica, sans-serif;
    position: fixed;
    background: transparent;
}

.main-menu{
    height: 1em;
}

.main-navigation{
    width: 100%;
    height: 4vh;
    padding-top: 1em;
    padding-left: 20px;
    padding-bottom: 1.6em;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: solid 1px #000;
    border-width: device-width;
    font-size: 1em;
}

.main-navigation .link{
    margin-right: 30px;
}

.home{
    width: 100%;
    font-size: 2.5em;
    padding-left: 20px;
    padding-bottom: 0.2em;
    border-bottom: solid 1px #000;
    border-width: device-width;
    display: inline-block;
}

a:hover{
    color: blue;
}

@media screen and (max-width: 1082px){
    .header .main-menu{
        font-size: 2em;
    }
}    

