/* ----- Propriété du site -----*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    font-family: 'Product Sans', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
    /*background: url("img/bg_soon.png");*/
    background-size: cover;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background-repeat: no-repeat;
}


/* ----- Barre de navigation ----- */
.navbar {
    position: absolute;
    padding: 50px;
    align-items: center;
    width: 100%;
}
#logoName {
    width: 100px;
}


/* ----- Configuration sections page ----- */
section {
    min-height: 100vh;
    width: 100wh;
    display: flex;
}
#sec-1{
    color: var(--color-text2);
    justify-content:center;
    align-items: center;
    padding: 2rem;
}


h1 {
    color: var(--color-text2);
    font-size: 5rem;
    font-weight: 800;
}
p {
    color: var(--color-text2);
    font-size: 1.8rem;
}
.wrapper {
    text-align: left;
}
.imgmaintenance{
    width: 20em;
    margin-left: 50px;
}

@media (max-width: 1000px) {
    h1 {
        font-size: 3rem;
        line-height: 2.5rem;
        margin-bottom: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
}