@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
    --section-line-projects : 100px; 
    --font-family--orbitron: 'Orbitron', 'semi-bold';
    --font-family-poppins: 'Poppins', sans-serif;
}

header{
    padding-top: 500px;
}

body {
    font-family: var(--font-family-poppins), sans-serif;
    margin: 0;
    padding: 0;
}

.side-background-img{
    width: 100%;
    height: 100%;
    z-index: -100;
    background-image: url(../img/RobbersBackground_darker.png);
    background-repeat: repeat;
    background-size: auto; /* Taille de l'image pour qu'elle couvre toute la page */
    background-position: auto;
    background-clip: initial;
    position: fixed;
}

.main-background-img {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: white;
    display: flex;
    width: 70%;
    margin: auto;
}

.section-divider {
    border: none;
    border-top: 2px solid #3498db; /* Couleur de la ligne de séparation */
    margin: 20px auto; /* Espacement autour de la ligne de séparation */
    width: var(--section-line-projects); /* Longueur de la ligne de séparation */
}

.title-section {
    font-size: 250%;
    text-align: center;
    z-index: 2000;
}

.home{
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Appliquer le padding-top uniquement pour les écrans plus larges que 858px */
@media screen and (min-width: 859px) {
    body {
        margin-top: 50px;
    }
}

