body {
    background-color: black;
    color: white;
    font-family: 'Playfair Display', serif;
}

#header {
    background-color: #333;
    padding: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    max-width: 100%;
    height: auto;
    max-height: 55px;
}

#main-content {
    width: 70%;
    text-align: left;
    float: left;
    padding-top: 8%;
}
#main-content h1 {
    font-size: 56px;
}

#main-content p {
    font-size: 38px;
}

#image-container {
    width: 30%;
    float: left;

}

#footer {
    background-color: #333;
    padding: 10px;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.button {
    padding: 10px;
    margin: 5px;
    background-color: #555;
    color: white;
    border: none;
    text-decoration: none;
    font-size: 16px;
}
