* {box-sizing: border-box}

html{
    height: 98%;
}
body {
    height: 98%;
    background-color: chocolate;
    background-image: url("./images/intro.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left top;
    background-size: cover;
}


#seite {
    position: relative;
    min-height: 100%;
    height: auto;
}
main {
    padding-bottom: 35px;
}

h1 {
    color: white;
    text-shadow: 2px 2px 25px black;
}
h2 {
    color: white;
    text-shadow: 2px 2px 25px black;
}
p {
    color: white;
    text-shadow: 2px 2px 25px black;
}
a {
    /* color: chocolate; */
    color: rgb(255,139,28);
    text-shadow: 2px 2px 15px rgb(76, 38, 10);
    text-decoration: none;
}
footer {
    color: black;
    text-shadow: 2px 2px 15px white;
    width: 100%;
    position: absolute;
    padding: 10px 2px 2px 2px;
    bottom: 0;
    clear: both;
}

li {
    color: white;
}

/* Navigation menu */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: chocolate;
}
nav li {
    float: left;
}
nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
nav li a:hover:not(.active) {
    background-color: rgb(127, 63, 18);
}

.active {
    background-color: rgb(76, 38, 10);
}

/* Image gallery */
div.gallery {
    margin: 5px;
    border: 1px solid #777;
    float: left;
    max-width: 160px;
    min-height: 190px;
  }
div.gallery:hover {
    border: 1px solid #ccc;
    font-size: 110%;
  }
  
div.gallery img {
    width: 100%;
    height: auto;
  }
  
div.desc {
    padding: 10px;
    text-align: center;
    color: white;
  }

.img_gallery {
    overflow: auto;
}

@media only screen and (min-width:600px) {
    main.text {
        width: 600px;
    }
}