/*                                           BODY & MAIN                                     */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: 5em;
    margin-left: 0em;
}



/*                                              HOME                                     */

.HomeContent {
    display: flex;
    justify-content: center;
    justify-items: center;
    flex-direction: column-reverse;
    width: 100%;
    overflow: scroll;
    top: 0;
    bottom: 0;
}

.HomeText {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.HomeImg {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2em;
}

#homeIMG {
    width: 90%;
}

div.a {
    border-radius: 50%;
    position: fixed;
    width: 100px;
    height: 100px;
    background-color: #00ff00;
    z-index: 1;
}

.a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Avenir;
    font-size: 1em;
}







/*            MEDIA QUERIES             */

/*            MEDIUM SCHERM         */

@media (min-width:738px) {


    /*                                             FONT                                     */
    #HomeTitle {
        font-size: 5em;
        font-style: normal;
        font-weight: 100;
    }




    /*                                           BODY & MAIN                                     */
    main {
        display: flex;
        flex-direction: row;
        text-decoration: none;
    }

    /*                                              HOME                                     */

    .HomeText {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        margin-top: 2em;
        margin-left: 2em;
        width: 50%;
    }

    .HomeImg {
        display: flex;
        justify-content: center;
        width: 50%;
        margin-top: 2em;
    }

    #homeIMG {
        width: auto;
        max-height: 80vh;
    }



    /*            HEADER             */
