* {
    margin : 0;
    padding : 0;
}
html, body {
    box-sizing : border-box;
    width : 100%;
    height : 100vh;
}
/* reset des liens ? */
a{
    text-decoration: none;
    text-decoration-color: black;
    cursor: text;
}

.splash-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* background: no-repeat center url("/assets/pictures/portAuLoin_9374.jpg"); */
    /* background-size: cover; */
    /* background-color: rgb(0, 0, 0); */
    /* filter: opacity(50%); */
    /* opacity: 0.5; */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.splash-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/pictures/portAuLoin_9374detail1.jpg') center/cover no-repeat;
    filter: opacity(1); /* Ajuste l'estompage */
    z-index: -1;
}

.splash-content{
    text-align: center;
    margin: 10px;
    color: white;
    /* filter: none; */
    opacity: unset;
}

.splash-content h1{
    font-size: 3.5vw;
    color: #cad7e2;
}

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 30px auto;
    padding: 20px;
    border: 1px ;
    border-radius: 10px;
    background-color: #2c3e50;
    color: #cad7e2;
    font-size: 2.5vw;
    width: fit-content;
}

.button:hover{
    cursor: pointer;
}