body {
    background-color: #FCFAF0;;
}

header {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Grüne Buttons*/

.pill {
    background: #99B0B0;
    width: 230px;
    height: 80px;
    font-size: 30px;
    padding: 0.5em 1em;
    border-radius: 3rem;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 10px;
    transition-duration: 0.4s;
}

.pill:hover {
    background: #698285;
    color: #FCFAF0;
}

nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

li a {
    color: #FCFAF0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: none;
}

h1 {
    font-family: monospace;
    font-size: 80px;
    margin: 20px;
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

.information {
    height: 300px;
    margin: 40px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
}

p {
   margin: 20px;
   padding: 10px;
   font-size: 20px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

footer {
    margin: 0 500px;
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
}

/* Responsive */

@media only screen and (max-width: 500px) {

    nav ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

header {
    margin: 0;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 40px;
    display: flex;
    justify-items: center;
}

.information {
    margin: 30px 0;
    display: flex;
    align-items: center;
}

footer {
    margin: 0;
}

}