/*root*/
:root {
    --bgcolor: #1a1a1a;
    --text-color: #fff;
    --nav-color: #000;
}
    
* {
    font-family: "Mozilla text", -apple-system;
    box-sizing: border-box;
    color: var(--text-color);
}
div, ul, nav, header, footer, a, li, label, body {
    margin: 0;
    padding: 0;
}
/*navigation bar*/
.nav {
    background-color: var(--nav-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--text-color);
}
.nav-checkbox {
    display: none;
}
.nav-button {
        font-size: 3rem;
    font-weight: 600;
    position: absolute;
    right: 1rem;
}
.nav-checkbox:checked ~  .nav-list-container {
    display: flex;
}
.nav-list-container {
    display: none;
    background-color: var(--nav-color);
    position: absolute;
    height: 100dvh;
    width: 100dvw;
    top: 0;
    z-index: -1;
    padding: 2rem;
    align-items: center;
    justify-content: center;
}
.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 40dvh;
}
.nav-list a {
    text-decoration: none;
}
.nav-title-container {
    display: inline-block;
    padding-left: 1rem;
    text-decoration: none; 
}
.nav-title-container a {
    text-decoration: none;
    font-family: 'Major Mono Display', --apple-system;
}
.nav-title {
    font-family: 'Major Mono Display', --apple-system;
}
.nav-element a {
    font-family: 'Major Mono Display', --apple-system;
    font-size: clamp(1.5rem, 5% + 0.2rem, 3rem);
}
/* Presentation - First Section */
body {
    background-color: var(--bgcolor);
}
h1 {
    font-family: 'Major Mono Display', --apple-system;
    font-size: clamp(3rem, 10%, 5rem);
    margin-bottom: 0;
}
h2 {
    font-family: 'Major Mono Display', --apple-system;
    font-size: clamp(1.5rem, 5%, 3rem);
}
.presentation {
    background: url(Assets/bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40dvh;
}
.main-description {
    padding: 0 1rem;
}
.description-title {
   display: inline-block;
   border-bottom: 1px solid var(--text-color);
   border-left: 1px solid var(--text-color);
   width: fit-content;
   padding: 1rem
}