body {
    font-family: "EB Garamond", serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #fff;
    color: black;
    padding: 10px;
    width: 100%;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    
    font-weight: normal;
}

nav ul {
    list-style: none;
    padding: 0;
    font-size: 24px;
}

nav li {
    display: inline;
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: black;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    padding: 20px;
}

.left-column {
    width: 30%;
    padding: 20px;
    /*background-color: #f0f0f0;*/
}

.left-column img {
    max-width: 100%;
    height: auto; /* This ensures that the image's aspect ratio is maintained */
}

.right-column {
    width: 70%;
    padding: 20px;
}

.home-content {
    color: black;
}

.center-heading {
    text-align: center;
}

.contact{
    text-align: left;
}

.video-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

main a {
    font-style: italic;
}
