body {
    background-color: #f4f6f9;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}
form {
    background-color: white;
    padding: 30px;
    width: 500px;
    border-radius: 10px;
    margin: 120px auto 40px auto;
}

button {
    width: 100%;
    height: 35px;
    background-color: green;
    color: white;
    border: none;
    transition: 0.5s;
}
button:hover {
    background-color: black;
}
nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background-color: white;
    border: 1px solid brown;
    border-radius: 5px;
    text-decoration: none;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: purple;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer {
    background-color: purple;
    color: white;
    text-align: center;
    padding: 15px;
}
main {
    margin-top: 130px;
    flex: 1;
}
th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}
table {
    margin: 20px 0 20px 50px;
    width: auto;
    border-collapse: collapse;
}
.table-container {
    display: flex;
    gap: 125px;
}

p {
    width: 600px;
    background-color: white;
    padding: 15px;
    border: 1px solid black;
    margin: 20px 0;
}

.geschiedenis {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #52ff81;
    border: 1px solid black;
    border-radius: 10px;
}
.geschiedenis p {
    width: 100%;
    max-width: 600px;
    margin: 10px 0;
    padding: 15px;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
}
.burj-eiffel {
    background-color: #ffe59e;
}
.burj-eiffel table {
    background-color: white;
}
.sydney {
    background-color: #d8fc44;
}
.sydney table {
    background-color: white;
}
.home {
    background-image: url("../images/favicon.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 90px;
    padding: 20px;
}
.home h2 {
    margin-top: 100px;
    color: #fa5f05;
}
.overmij {
    background-color: #e4ff36;
    text-align: center;
}
.box {
    width: 400px;
    background-color: white;
    border: 1px solid black;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
}
.contactform {
    background-color: #cce0ff;
}
