* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
    padding: 24px;
    font-weight: 700;
}

header p {
    font-size: 18px;
    text-transform: uppercase;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 64px;
}

.nagles__wrapper {
    border: 3px solid black;
    padding: 32px;
    max-width: 800px;
    border-radius: 8px;
}

.nagles__wrapper img{
    margin-bottom: 24px;
}

.nagles__wrapper h1 {
    font-size: 20px;
    font-weight: 700;
}

.nagles__wrapper h2 {
    font-size: 18px;
    font-weight: 400;

}

#tlg, #nagels {
    width: 250px;
}

#tlg {
    width: 400px;
}

.maintenance__wrapper {
    color: red;
}

.maintenance__fr {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.maintenance__en {
    font-size: 18px;
    text-transform: uppercase;

}


footer {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 24px;
    border-top: 3px solid #578FB6;
    width: 100%;
}

footer p {
    font-size: 14px;
}

.footer__contact {
    display: flex;
    gap: 16px;
}

.footer__loi {
    display: flex;
    gap: 16px;
}

@media screen and (max-width: 830px) {
    body {
        padding: 20px;
    }

    .footer__contact {
        display: block;
    }
    
    .footer__loi {
        display: block;
    }    

}

@media screen and (max-width: 500px) {

    body {
        padding: 12px;
    }

    #tlg {
        width: 300px;
    }

    #nagels {
        width: 200px;
    }

    section {
        gap: 24px;
    }

    .nagles__wrapper img{
        margin-bottom: 13px;
    }

    .nagles__wrapper h1 {
        font-size: 18px;
    }
    
    .nagles__wrapper h2 {
        font-size: 16px;
    }

    .maintenance__fr {
        font-size: 20px;
    }
    
    .maintenance__en {
        font-size: 16px;
    }

    footer {
        padding: 8px 16px 16px 16px;
    }

    footer p {
        font-size: 12px;
    }

}