=* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Playfair Display', serif;
    background-color: #F5F5F5;
}

header, footer {
    background-color: #2E502C; /* Dark green color */
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 10px 0;
    font-size: 30px;
    text-align: center;
}

.header-left, .header-right {
    width: 50%;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

main img {
    width: 100%;
    height: auto;
}

footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left, .footer-center, .footer-right {
    width: 30%;
    text-align: center;
}

.footer-left p, .footer-center p, .footer-right p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }
    
    header {
        flex-direction: column;
    }
    
    .header-left, .header-right {
        width: 100%;
    }
    
    footer {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-left, .footer-center, .footer-right {
        width: 100%;
    }
}

