/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Centering all content */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: garamond, serif;
    color:#fefefe;
}

/* Centering header content */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
}

/* Styling for the logo */
.logo {
    height: auto;
    margin: 0 auto 20px; /* Remove top margin and center the logo */
    max-width: 100%; /* Ensure it spans full width on mobile */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header {
        padding: 10px;
    }

    .logo {
        max-width: 100%; /* Ensure the logo spans the full width */
        height: auto;    /* Maintain aspect ratio */
        margin-bottom: 15px;
    }
}

h1 {
    margin: 0;
    text-shadow: 2px 2px rgb(0, 0, 0);
}

h2 {
    text-shadow: 2px 2px rgb(0, 0, 0);
    margin-bottom: 20px;
}

p {
    margin: 10px 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin-top: 20px;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.contact-info p {
    margin: 5px 0;
}

section {
    text-shadow: 1px 1px rgb(0, 0, 0);
    font-size: x-large;
    margin-bottom: 20px;
}

