﻿html {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    min-height: 100%;
    margin: 0;
}

    /*body::after {
        content: '';
        display: block;
        height: 100px;
    }*/

#borderHeader {
    border-top: 3px solid;
    width: 100%;
}

#legalFooter {
    /*position: absolute;
    bottom: 0;
    z-index: 0;
    width: 100%;*/

    color: white;
    font-size: .8rem;
    text-align: center;
    padding: 15px 0 5px 0;
    background-color: #3E4551;
}

    #legalFooter p:first-child {
        color: var(--primary);
        display: inline-block;
    }

        #legalFooter p:first-child:hover {
            text-decoration: underline;
            cursor: pointer;
        }

.contact {
    font-weight: 500;
}

#NonCompatibleBrowser {
    margin: 150px auto 0;
    width: 80%;
    max-width: 1200px;
    background-color: #3E4551;
    padding: 5rem;
    text-align: justify;
}

    #NonCompatibleBrowser h2, #NonCompatibleBrowser h5 {
        font-weight: 400;
    }

.container {
    width: 80%;
    padding: 45px;
    max-width: 1000px;
    border-radius: 12px;
    margin: 150px auto 0;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

@media screen and (max-width: 768px) {
    .container {
        padding: 30px;
        width: auto;
        margin: 6rem 0.75rem 0;
    }
}