html, body {
    box-sizing: content-box;
}

@font-face {
    font-family: 'Press Start 2P';
    src: url('../fonts/PressStart2P-Regular.ttf');
  }
@font-face {
    font-family: 'Noto Serif';
    src: url('../fonts/NotoSerif-Regular.ttf.ttf');
  }
img {
    width: 100%;
    text-align: center;
}

a {
    text-decoration: underline;
    color: #000;
}

p a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #000;
}

h1 {
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    color: green;
    font-size: 3em;
    font-weight: 600;
} 

h2 {
    font-family: 'Noto Serif', serif;
    color: #000;
    font-size: 2em;
    font-weight: 600;
}

p {
    font-family: 'Noto Serif', serif;
    font-size: 1em;
}

.scroll-down {
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    color: green;
    font-size: 3em;
    font-weight: 600;
    position: absolute;
    bottom: 0;
}

.scroll-down a {
    text-decoration: none;
    color: green;
}

.section-1 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-image: url(../img/glitch.gif);
        background-repeat: no-repeat;
        background-size: cover;
    height: 100vh;
}


.section-2 { 
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    min-height: 100vh;
}

.link-box {
    border: 1px solid #f7f7f7;
}
.link-box .illu {
   max-height: 33%;
}
.link-box .illu img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    
}
.link-box .texte {
    padding: 2em;
}

.link-box:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 3px 1px 5px;
}
.link-box:hover img{
    -webkit-filter: invert(100%) !important;
    filter: invert(100%) !important;
}

.col-33 {
    /* flex: 1; */
    width: 31%;
    margin: 1%;
}

.col-33 h2 {
    text-align: center;
    padding-bottom: 15px;
}

.col-33 p {
    text-align: center;
}

.footer {
    background-color: #000;
    text-align: center;
    color: #fff;
    font-size: 0.7em;
}

/* responsive */

@media screen and (max-width: 1024px) {
    .col-33 {
        width: 31%;
    }
}
@media screen and (max-width: 768px) {
    .col-33 {
        width: 48%;
    }
}
@media screen and (max-width: 767px) {
    .col-33 {
        width: 98%;
    }
}