html {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: black;
    overflow: hidden;
    min-width: 1024px;
    min-height: 700px;
    font-size: 12px;
}

body {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    margin: 0;
}

#painting {
    position: absolute;
    width: 100%;
    height: 55%;
    top: 0px;
    background-color: #FFF;
    background-image: url("../IMG/Connection/painting-background.jpg");
    background-size: auto 100%;
    background-repeat: repeat-x;
}

    #painting img {
        height: 100%;
        margin: auto !important;
        display: flex !important;
    }

    #painting #title {
        position: absolute;
        width: 380px;
        height: 80px;
        margin: 0 auto;
        text-align: center;
        margin-top: 15px;
        margin-left: calc((100% - 380px) / 2);
        text-align: center;
    }

        #painting #title h1 {
            font-family: "Overpass Extra Light";
            color: #FFF;
            margin: 0;
        }

#under_painting {
    width: 100%;
    height: 35%;
    top: 52%;
    position: absolute;
}

    #under_painting #module {
        width: 100%;
        height: 100px;
        text-align: center;
        margin: 0 auto;
    }

        #under_painting #module ul {
            margin-top: 30px;
            padding: 0px;
            list-style-type: none;
        }

        #under_painting #module li {
            display: inline-block;
            margin: 0 5px;
            min-width: 90px;
        }

            #under_painting #module li p {
                width: 100%;
                font-family: "Overpass Bold";
                font-size: 14px;
                margin-top: 7px;
                color: #D3D4D7;
            }

            #under_painting #module li img {
                width: 60px;
            }

#footer {
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0px;
    bottom: 0px;
    background-color: #6F7074;
    text-align: center;
    display: flex;
    font-size: 12px;
    font-family: "Overpass Regular";
}

    #footer #credits {
        flex: 1 1 auto;
    }

        #footer #credits tbody {
            margin-left: 5vw;
        }

    #footer #version {
        width: 5vw;
        margin: auto;
    }

    #footer table {
        margin: 0 auto;
        height: 100%;
    }

        #footer table td {
            vertical-align: middle;
        }

    #footer p {
        color: #FFF;
        font-family: "Overpass Regular";
        font-size: 13px;
        display: inline;
        margin-right: 10px;
    }
