body {

    background-color: #5f4340;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #dddddd;
    font-size: larger;

}

div {

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

.headerBackground {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

}

header {

    background-color: black;
    height: 6em;

}

.headerFlexBox {

    display: flex;
    
}

.headerButtons {

    position: absolute;
    top: 2.4em;
    right: 0em;

}

.headerButtons a {

    background-color: #aaaa00;
    color: black;
    
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: larger;

    text-decoration: none;
    
    padding: 0.8em;

    margin-right: 1em;

    border-radius: 25px;

}

.headerButtons a:hover {

    /*color: #882525;*/
    color: #ffff00;

}

.headerButtons a:focus {

    /*color: #581515;*/
    color: #333333;

}

.flexBoxForElementsOnPage {

    display: flex;
    
}

.flexBoxForElementsOnPage > div {

    margin: 8em 2em 2em 2em;
    
}

.myImage {

    width: 22em;
    position: relative;
    top: 2em;
    right: 2em;

}

a {

    color: #cccc00;

}

a:hover {

    color: #f0f000;

}

a:focus {

    color: #bbbb00;

}

.e_mail_Image {

    position: relative;
    top: 0.11em;
    /*top: -0.24em;*/

}

.footerBackground {

    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100;

}

footer {

    background-color: black;
    height: 3em;

}

@media only screen and (max-width: 640px) {
    
    body {

        font-size: medium;

    }

    .flexBoxForElementsOnPage {

        display: block;
        
    }

    .myImage {
    
        width: 21em;
        position: relative;
        top: -2.2em;
        right: auto;
        
    }

    .flexBoxForElementsOnPage > div {

        margin: 8em 1em 0em 1em;
        
    }

    .headerButtons a {
    
        font-size: medium;
    
    }

}