body {
    font-family: Arial, sans-serif;
    background-color: #E0E2DF;
}

.home {
    margin: auto;
    margin-top: 100px;
    margin-bottom: 200px;
    width: 80%;
    max-width: 800px;
    padding: 10px;
    text-align: center;
}

.home_image{
    width: 300px;
    height: 300px;
    margin-bottom: 50px;
}

.home_name {
    font-weight: bold;
}

.home_title {
    font-size: medium;
    font-weight: normal;
    color: #BB9476;
}

.home_section {
    font-weight: bold;
    margin-top: 80px;
}

.text_content {
    text-align: justify;
    text-justify: inter-word;
}

.contacts a {
    padding-right: 10px;
    margin-left: 10px;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}
.contacts a:hover {
    opacity: 0.5;
}

.copyright {
    font-size: 16px;
    color: #aaa;
    position:fixed;
    background-color: white;
    background: #E0E2DF;
    bottom: 0px;
    width: 100%;
    height: 30px;
    margin-left: -10px;
    margin-top: -25px;
    text-align: center;
    padding-top: 15px;
    box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;

    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 3s; /* Firefox before 16 */
    -ms-animation: fadein 3s; /* Internet Explorer */
    -o-animation: fadein 3s; /* Opera before 12.1 */
    animation: fadein 3s;
    
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}