*, *::before, *::after{
    box-sizing: border-box;
}

html {
    font-family: 'Courier Prime', monospace;
   
}

body{
    background-color: black;
    color: white;
    height: 100vh;
    margin: 0;
}

header {
    height: 10%;
/*    border: red solid 1px;*/
    display: flex;
    justify-content: space-between;
    padding-top: 2%;
    padding: 30px;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: white;
}

p {
    margin: 0;
/*    border: red solid 1px;*/
}

.rs {
    text-decoration: none;
    color: white;

}

/* MENU BURGER */ 

.menu {
    position: absolute;
    top: 42%;
    left: 30px;
/*    border: solid red 1px;*/
}

.menuu {
    background-color: white;
    width: 25px;
    height: 2px;
    margin-bottom: 8px;
    
}

/* END OF MENU BURGER */ 

.titre {
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filmmaker {
    font-size: 2.5rem; 
}

.nom {
    width: 100%;
    display: flex;
    flex-direction: row;
    font-size: 4rem;
    margin-top: 20px;
    justify-content: center;
}

.liste-projets {
    height: 20%;
    display: flex;
    justify-content: space-around;
    
    
}

.projet-gauche {
    width: 25%;
    text-align: right;
    font-size: 1.2rem;
}

.projet-droite {
    width: 25%;
    text-align: left;
    font-size: 1.2rem;
}

.arrow-right {
    width: 40px;
    height: 40px;
    transform: rotate(90deg);
}

.arrow-left {
    width: 40px;
    height: 40px;
    transform: rotate(-90deg);
}


#video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: auto;
  transition: 0s opacity;
}

.about:hover {
    text-decoration-line: line-through;
}

.rs:hover {
    text-decoration-line: line-through;
}

.projet-gauche:hover {
    text-decoration-line: line-through;
}

.projet-droite:hover {
    text-decoration-line: line-through;
}

/* MEDIA QUERIES !!!!!!!!! */

@media (max-width:1250px) {
    
    .nom {
        font-size: 3rem;
    }  
    .filmmaker {
        font-size: 2rem;
    }
    .projet-gauche {
    font-size: 1rem;
    }

    .projet-droite {
    font-size: 1rem;
    }
    
    

}


@media (max-width:1024px) {
    
    .nom {
     flex-direction: column;
        align-items: center;
        font-size: 2.5rem;
    }  
    
    .filmmaker {
        font-size: 2rem;
    }
    
    .rs {
        display: none;
    }
    
    header {
    justify-content: flex-end;
}
   
    .menu {
        top: 30px;
        left: 30px;
    }
    
    .projet-gauche {
             width: 40%;
    }

    .projet-droite {
        width: 40%;
    }
}

@media (max-width:500px) {
    
    .nom {
     flex-direction: column;
        align-items: center;
        font-size: 2rem
    }  
    
    .filmmaker {
        font-size: 1.5rem;
    }
 
         .projet-gauche {
    font-size: 0.8rem;
    }

    .projet-droite {
    font-size: 0.8rem;
    }
}


/* END OF MEDIA QUERIES !!!!!!!!! */

