/*ALLGEMEIN*/

* {
    font-family: Helvetica, sans-serif;
    font-size: 16pt;
    margin: 0;
    padding: 0;
}

.wrapper {
    width: 960px;
    max-width: 90%;
    margin: 0 auto;
}

.clear {
    clear:both;

}

.block_150px {
    height: 150px;
}

.block_50px {
    height: 50px;
}

h3 {
    font-size: 1.8em;
    text-align: center;
}
h4 {
    font-size: 1.5em;
    text-align: center;
}

p {
    font-size: 1em;
}

/*NAVIGATION*/

#navigation {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
}

#logo {
    width: 15%;
    padding-bottom: 15%;
    margin: 2px 0;
    float: left;
    background: url(Grafiken/Gerald-Logo-Dummy.png);
    background-size: cover;
}

#menue {
    width: 84%;
    min-height:  100px;
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-around;
    align-items: center;
    float:right;
}

.menue-punkt {
    padding-top: 15px;
}

#navigation a {
    text-decoration: none;
    padding: 0 15px;
    padding-top: 8px;
    font-size: 1em;
    font-weight: 700;
    color:red;
}

#navigation a:hover {
    border-top: solid 5px red;
    color: black;
}

/*BANNER */

#banner {
    width: 100%;
    z-index: 1;
    background: url(Grafiken/Banner-Frohnleiten.jpg);
    background-size: cover;
}

#banner h1 {
    font-size: 7em;
    text-align: center;
    padding-top: 230px;
    color: white;
    font-family: 'Crushed', cursive;
}

#banner h2 {
    font-size: 3em;
    text-align: center;
    padding-top: 50px;
    color: lightgrey;
    font-style: italic;
    font-family: 'Crushed', cursive;
}

/*UEBER MICH*/

#ueber_mich {
    background-color: beige;
}

#face {
    width: 30%;
    padding-bottom: 30%;
    background: url(Grafiken/Gerald_portrait_3.jpg);
    background-size: contain;
    float: right;
    border-radius: 50%;
}

/*FAMILIE*/

#die_familie {
    background-color: coral;
}

#die_familie p {
    text-align: center;
}

/*HOBBIES*/

#hobbies {
    background-color:darkseagreen;
}

#hobbies p {
    text-align: center;
}

/*ARBEIT*/

#arbeit {
    background-color:paleturquoise;
}

#arbeit p {
    text-align: center;
}

/*FOOTER*/

#footer {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 2em;
    background-color: rgba(255,255,255,0.8);
}

#footer p {
    text-align: center;
    line-height: 2;
    font-weight: 600;
}