@font-face {
    font-family: "DrawingSet";
    url("../font/Super Brush.otf") format("otf");
}

@font-face {    
    font-family: "ExtraLight";
    url("../font/extralight.otf") format("otf");
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Mono', monospace;
}

#content {
    display: flex;
    flex-direction: row;
}

#navigation {
    width: 11%;
    height: 55vh;
    margin: 1.5% 0 0 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#navigation img {
    width: 75%;
    margin: 10% 0 10% 0;
}

#navigation ul {
    list-style-type: none;
    width: 100%;
}

#navigation ul a {
    text-decoration: none;
    color: black;
    font-size: 1.5vw;
    height: 5vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navigation ul a:hover {
    background-color: black;
    color: white;
}

.vertical-bar {
    width: 1px;
    height: 45vh;
    background-color: black;
    margin: 1% 0 0 0;
}

h2 {
    font-family: 'DrawingSet', cursive;
}

#projects {
    width: 100%;
    height: 100vh;
}

#projects #title {
    height: 15vh;
    margin: 2% 0 1% -20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#projects #title h2 {
    font-size: 2vw;
    margin: 0 0 0.5% 0;
}

#projects #title hr {
    width: 20%;
    height: 2px;
    background-color: black;
    margin: 0 0 1% 0;
}

#projects #title p {
    color: dimgray;
}

#projects #container {
    width: 80%;
    margin: 0 0 0 2%;
    height: auto;
    display: flex;
    flex-wrap: wrap; 
    gap: 1rem;
}

#projects #container .project {
    width: 30%;
    height: 30vh;
    border-radius: 10px;
    background-color: white;
    margin: 1% 0 1% 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); 
    cursor: auto;
}

#projects #container .project:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

#speatfighter .project-img {
    width: 100%;
    height: 20vh;
    background-image: url("../img/speatfighter-game.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#luminaria .project-img {
    width: 100%;
    height: 20vh;
    background-image: url("../img/luminaria.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

 .info {
     display : flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     margin: 2% 0 0 0;
 }
 
 .info h4 {
     font-size: 1.2vw;
 }
 
 .info p {
     color: darkgray;
 }
 
 .info p:not(.plateform) {
     color: dimgray;
 }