* {
    color: black;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    padding: none;
    margin: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-image: url(../img/fond.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.construction {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: none;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgba( 245, 245, 245, 0.45 );
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur( 6.5px );
    -webkit-backdrop-filter: blur( 6.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    padding: 15px;
}

h1 {
    text-align: center;
}

.logo {
    max-width: 40%;
}

footer {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

footer p {
    width: 100%;
    line-height: 30px;
    font-size: 24px;
}

footer i {
    color: #1E3050;
    font-size: 30px;
    padding: 0 10px;
}

@media only screen and (max-width: 600px) {
.construction {
    width: 90%;
}

    h1 {
        font-size: 24px;
    }

    footer p {
        line-height: 16px;
        font-size: 16px;
    }
    
    footer i {
        color: #1E3050;
        font-size: 18px;
        padding: 0 5px;
    }
  }