*{
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    color: black;
}
html{
    scroll-behavior: smooth;
}
body::-webkit-scrollbar{
    display: none;
}
body{
    /*background-position-y: 59px;*/
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    background-attachment: fixed;
}

/*.content {
    margin-top: 59px; /* Déplace le contenu de 59 pixels vers le bas pour laisser de la place à la barre de navigation */
    /*padding: 20px; /* Ajoute un espace autour du contenu 
}*/

.main{
    /*padding-top: 59px;*/
    position: relative;
    bottom: 0;
    display: grid;
    grid-template-columns: 1% auto 1%;
    grid-template-rows: 0 100vh 100vh 100vh 100vh 100vh 100vh 100vh 0;
    gap: 0em 0em;
    grid-auto-flow: row;
    justify-content: center;
    align-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    grid-template-areas:
    "nav nav nav"
    ". home ."
    ". moi ."
    ". par ."
    ". bts ."
    ". pro ."
    ". vei ."
    ". tab ."
    "foot foot foot";
}
.tittle{
    width: 100%;
    text-align: center;
    font-size: 22px;
    text-decoration: underline overline;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}