body{
    margin: 0;
    padding: 0;
    font-family: verdana, sans-serif;  
    background-color: #e4e7c4;
}

h1 {
    color: #6f943e;
    text-shadow: black 0.1em 0.12em 0.1em;
    letter-spacing: 0.2em;
    margin-right: 110px;
}

h2 {
    color: black;
    font-size: 18px;
    margin-right: 110px;
}

h3 {
    font-size: 18px;
    color: #6f943e;
}

#zeit {
    position: absolute;
    background-image: linear-gradient(to left, rgba(228, 231, 196, 0.53) 70%, rgba(252, 252, 252, 0) 99%);
    background-image: linear-gradient(90deg, rgba(228, 231, 196, 0.53) 70%, rgba(252, 252, 252, 0.0) 99%);
    text-align: right;
    line-height: 25px;
    width: 500px;
    height: 160px;
    top: 320px;

}

#trauer {
    text-align: center;
    background-image:url(images/zeit.png);
    background-repeat: no-repeat;
    background-position: center;
}

#treppe {
    background-image:url(images/treppe.png);
    background-repeat: no-repeat;
    background-position: right;
}

#mich {
    background-image:url(images/mich.png);
    background-repeat: no-repeat;
    background-position: right;
}

#motivation {
    background-image:url(images/motivation.png);
    background-repeat: no-repeat;
    background-position: right;
}

input {
    font-size: 12px;
    color: #000000; 
    border: 1px solid rgba(111, 148, 62, 0.38);
    background-color: rgba(228, 231, 196, 0.49);
    padding: 5px;
}
textarea {
    font-size: 12px;
    width: 300px;
    height: 100px;
    color: #000000; 
    border: 1px solid rgba(111, 148, 62, 0.38);
    background-color: rgba(228, 231, 196, 0.49);
    padding: 5px;
}

header {
    background-position: center;
    background-image: url(images/start.jpg);
    background-size: cover;
    width: 100%;
    padding: 240px 0;
    color: white;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

nav ul {
    background-color: #283615;
    overflow: hidden;
    color: #e4e7c4;
    padding: 0;
    text-align: center;
    margin: 0;
    -webkit-transition: max-height 0.9s;
    -ms-transition: max-height 0.9s;
    -moz-transition: max-height 0.9s;
    transition: max-height 0.9s;
}

nav ul li {
    display: inline-block;
    padding: 20px;
}

nav ul li:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

section {
    line-height: 1.5em;
    font-size: 0.9em;
    padding: 40px;
    width: 75%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 2px 2px 1px rgba(50, 50, 50, 0.52);
    -moz-box-shadow: 2px 2px 1px rgba(50, 50, 50, 0.52);
    -webkit-box-shadow: 2px 2px 1px rgba(50, 50, 50, 0.52);
    -ms-box-shadow: 2px 2px 1px rgba(50, 50, 50, 0.52);
}

.handle {
    width: 100%;
    background-color: rgba(40, 54, 21, 0.85);
    text-align: center;
    box-sizing: border-box;
    padding: 15px 10px;
    cursor: pointer;
    color: #e4e7c4;
    display: none;
}

footer {
    font-family: arial;
    font-size: 15px;
    background-color: #e4e7c4;
    text-align: center;
    cursor: pointer;
    color: rgba(111, 148, 62, 0.88);
}

@media screen and (max-width: 580px) {
     nav ul {
        max-height: 0;
    }
    
    .showing {
        max-height: 20em;
    }
    
    nav ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 15px;
        text-align: center;
    }   
    
    .handle {
        display: block;
    }
    
    #trauer {
        background-image: none;
    }

    #treppe {
        background-image: none;

    }

    #mich {
        background-image: none;
  
    }
    
    #motivation {
        background-image: none;

    }
}

