/* styles.css */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #1B4571;
    background: #FFDC00;
    margin: 0;
    padding: 0;
}

header {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: #FFFFFF;
    background-image: url('files/header_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFDC00;
    padding: 1em 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #FFDC00;
    text-decoration: none;
}

.image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about .image {
    background-image: url('files/hero.jpg');    
}

.follow .image {
    background-image: url('files/instagram.jpg');
}

.follow {
    color: #1B4571;
    text-align: center;
    padding: 100px 0;
}


.about, .impressum, .contact {
    padding: 50px 0;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

.contact form input, .contact form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1em;
}

.contact form button {
    padding: 10px;
    font-size: 1em;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

footer {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #1B4571;
    text-align: center;
    padding: 20px 0;
}
