body {
    background-color: #FCFAF0;;
}

/* Homescreen Design*/

.homescreen {
    margin: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textbox {
    height: 400px;
    width: 300px;
    margin: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

p {
    padding: 0;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

#hello {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 30px;

}

img {
    width: auto;
    height: 400px;
}

p {
    margin: 40px;
    display: flex;
    justify-content: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

/* Grüne Buttons */

.select-buttons {
    margin: 400px 0px 200px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

li a {
    color: #FCFAF0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: none;
}

.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;
    cursor: pointer;
}

.pill:hover {
    background: #698285;
    color: #FCFAF0;
}

footer {
    margin: 0 500px;
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
}

/* Responsive */

@media only screen and (max-width: 500px) {
    nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.homescreen {
    margin: 20px;
    flex-direction: column;
    justify-content: center;
}

.textbox {
    height: 150px;
    display: flex;
    align-items: center;   
}

.select-buttons {
    margin: 250px 0 100px 0;
}

footer {
    margin: 0;
}

}

