:root {
    --accent-color: #04ff00;
    scroll-behavior: smooth;
}

/* Font du texte */

.vt323-regular {
    font-family: "VT323", serif;
    font-weight: 400;
    font-style: normal;
  }
  

/* Reset et Petit Ajustements */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: vt323;
    font-size: +1.3rem;
}
body{
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: black;

}
.matrix{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.4;
}
canvas{
    border-bottom: 2px solid var(--accent-color);
}
/* Barre de navigation */

nav{
    width: 100%;
    height: 10vh;
    position: fixed;
    top: 0; 
}
.navbar{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}
.logo{
    color: white;
    font-size: 3rem;
    font-weight: bold;
    margin-left: 20px; 
    justify-self: flex-start;
}
.logo span {
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
    font-size: 3.3rem;
}
.navbar{
    display: flex;
    width: 100%;
}
.navbar .links{
    display: flex;
}
.navbar .links a{
    position: relative;
    font-size: 2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}
.navbar .links a::before{
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent-color);
    transition: 0.2s linear;
}
.navbar .links a:hover::before{
    width: 100%;
}
.navbar .links a:hover{
    color: var(--accent-color);
}

/* Contenu */

section{
    padding-top: 10vh;
    width: 100%;
    height: 90vh;   
}
.main-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.secondary-container{
    width: 100%;
    height: fit-content+20vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.content{
    color: white;
    width: 30%;
    min-height: 100px;
}
.content h1{
    font-size: clamp(1rem, 1rem + 5vw, 1.8rem);
}
.content h4{
    margin: 1rem;
}
.content p{
    font-size: clamp(0.4rem , 0.2rem + 9vw, 1rem);
    margin: 1rem;
}
.content p span{
    color: var(--accent-color);
    font-weight: 600;
}
.content li {
    font-size: 1.3rem;
    padding: 5px;
    color: var(--accent-color);
}
.content h3{
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 1rem;
    display: inline-block;
}
footer{
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border-top: 2px solid var(--accent-color);
    color: white;
    font-size: 1.5rem;
    bottom: 0;
    position: fixed;
}

