* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #101010;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

/* --- HEADER / FOOTER -------------------- \
\ ---------------------------------------- */

.corner-content {
    background: #101010;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 50px;
    z-index: 5;
}

.corner-content p {
    /* éléments non-interractifs */
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #FFFFFF;
    font-size: medium;
    height: 31px;
    width: 88px;
    border: 1px solid #FFFFFF;
}

.corner-content button {
    /* éléments interractifs */
    background: none;
    color: #FFFFFF;
    font-size: medium;
    height: 31px;
    width: 88px;
    border: 1px solid #FFFFFF;
}

#plus {
    border: none;
}

.corner-content button:hover {
    scale: 1.04;
}

.corner-content button:active {
    scale: 0.96;
}

/* --- SECTION -------------------- \
\ -------------------------------- */

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    padding: 0 20px;
    width: 100vw;
    border: 1px transparent #4AFF53;
}

.title {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #1b1b1b;
    font-size: 30vw;
    height: 100vh;
    width: calc(100vw - 40px);
    z-index: -1;
}

/* --- RESPONSIVE -------------------- \
\ ----------------------------------- */

@media (max-width: 768px) {

    .corner-content,
    section {
        padding: 0 10px;
    }

    .title {
        align-items: start;
        margin-top: 125px;
    }
}