@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    background-color: #fdf8f0;
    color: #333;
}

header {
    background-color: #4a2c2a;
    color: #fdf8f0;
    padding: 20px;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin: 0;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    border-bottom: 2px solid #4a2c2a;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer {
    background-color: #4a2c2a;
    color: #fdf8f0;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
