* {
    font-family: 'Roboto';
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: center;

    background-color:whitesmoke;
}

button {
    border: none;
    cursor: pointer;
    appearance: none;
    background-color: inherit;

    font-size: 36px;
}

section {
    min-height: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

li, #logo, img {
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
}

h1 {
    font-family: 'Roboto';
}

h2 {
    font-family: 'Roboto';
    font-size: 36px;
}

h3 {
    font-family: 'Roboto';
    font-size: 28px;
}

/* Header */
header {
    width: 100%;
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    background: whitesmoke;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1;
}

#logo {
    width: 140px;
    float: left;
    margin: 10px 0 0 50px;

}

#logo:hover {
    opacity: 0.5;
}

#logo img {
    width: 100%;
}

header nav {
    float: right;
    margin: 10px 50px 0 0;
}

header nav ul li {
    float: left;
    margin-right: 25px;
}

header nav ul li a {
    font-size: 18px;
    color: black;
}
header nav ul li a:visited {
    color:black;
}

header nav ul li:hover {
    padding-top: 5px;
    opacity: 65%;
}

/* HOME */
#home {
    background-image: url(images/landing2.jpeg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    
}

#home #heading {
    background-color: black;
    opacity: 60%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

#home #heading h1 {
    margin: 17% auto 0;
    opacity: 100%;
    color:aliceblue;
    font-size: 110px;
}

#home #heading h2 {
    margin: 0 auto 0 auto;
    color:aliceblue;
    opacity: 100%;
}

#home #pfeil {
    width: 32px;
    margin-top: 150px;
    opacity: 0.7;
}
#home #pfeil:hover {
    opacity: 1;
}

/* Gallery */
.gallerypic img {
    border: 1.5px solid slategray;
    background-color: gray;
    padding: 3px;
    margin: 3px;
}

#pagetxt {
    font-size: 36px;
}

/* contact */
#contact {
    margin-left: auto;
    margin-right: auto;
}   

#contact tr td {
    padding: 5px;
}

#contact tr td a {
    text-decoration: none;
}
#contact tr td a:visited {
    color: slateblue;
}
#contact tr td a:link {
    color: slateblue;
}

#frame{
    background-color: slategray;
    padding: 5px;
}

/* classes */
.texcenter {
    text-align: center;
}

.seperator {
    height: 50px;
}

.uebermichparagraph {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18pt;
}


/* footer */
footer {
    font-size: 20pt;
}