body {
    background-color: #ffffdd;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0;
    font-family: Verdana, Helvetica, sans-serif;
}


/**********************/


/*	text							*/


/**********************/

p {
    font-family: Verdana, Helvetica, sans-serif;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    /*font-size: 1rem;*/
    color: #3354aa;
    text-align: right;
}


/**********************/


/*	href							*/


/**********************/

a.txt {
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5pt;
}

a.titel {
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5pt;
}

a.txt:link,
a.txt:visited,
a.titel:link,
a.titel:visited {
    color: #000066;
}

a.txt:active,
a.txt:hover,
a.titel:active,
a.titel:hover {
    color: #666666;
}

a.design:link,
a.design:visited {
    color: #c0c0c0;
    font-size: 10px;
}

a.design:active,
a.design:hover {
    color: #cccccc;
    font-size: 10;
}


/* nav2 leiste */

p {
    font-size: 12px;
    color: #FFFFFF;
    margin-right: 1.5rem;
    margin-top: 6px;
    text-align: right;
    padding-bottom: 6px;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    font-weight: normal;
    letter-spacing: 0.5px;
}

a:link,
a:visited {
    color: #ffffff;
}

a:active,
a:hover {
    color: #222222;
}


/* animation */

#start {
    -webkit-animation: fadein 0.66s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 0.66s;
    /* Firefox < 16 */
    -ms-animation: fadein 0.66s;
    /* Internet Explorer */
    -o-animation: fadein 0.66s;
    /* Opera < 12.1 */
    animation: fadein 0.66s;
}

@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;
    }
}