body {
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.unifrakturmaguntia-regular {
    font-family: "UnifrakturMaguntia", cursive;
    font-weight: 400;
    font-style: normal;
}

header {
    background-color: #c0e4f2;
    color: #333;
    font-family: unifrakturmaguntia;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    margin: 0;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
    font-size: 4.5rem;
}

header p {
    margin: 0;
    font-size: 1.6rem;
}

nav {
    background-color: #c0e4f2;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 100px; /* Reduce this value slightly */
    z-index: 999; /* Ensure it stays below the header */
    margin: 0;
    box-sizing: border-box;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: unifrakturmaguntia;
    font-size: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: normal;
    cursor: pointer;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding-top: 200px; /* Adjust the top padding to account for the fixed header and nav */
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}

section {
    margin-bottom: 5rem;
}

section h2 {
    font-size: 3.5rem;
    font-family: unifrakturmaguntia;
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #fff;
    margin: 0.5rem 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact p a {
    color: #333;
    text-decoration: none;
}

#contact p a:hover {
    text-decoration: underline;
}

form {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 1rem;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: #c0e4f2;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

form button:hover {
    background-color: #555;
}

footer {
    background-color: #c0e4f2;
    font-family: a;
    color: #333;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
    }

    header p {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
    }

    nav ul li {
        display: inline-block;
        margin: 0.5rem 0.5rem;
    }

    main {
        padding-top: 250px; /* Adjust this value based on the combined height of header and nav */
    }

    section h2 {
        font-size: 2.5rem;
    }

    form {
        padding: 0.5rem;
    }
}
