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

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body
{
    background-color: #FAE5D3;
    color: #4E342E;
    line-height: 1.6;
    font-size: 18px;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header
{
    background: #8D6E63;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

header h1
{
    font-size: 70px;
    letter-spacing: 2px;
    font-weight: bold;
}

nav ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav ul li
{
    display: inline;
}

nav ul li a
{
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

nav ul li a:hover
{
    background-color: #6D4C41;
    border-radius: 5px;
}

main
{
    padding: 100px 20px;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

h2
{
    color: #6D4C41;
    font-size: 50px;
    margin-bottom: 20px;
}

.about
{
    text-align: center;
    margin-top: 20px;
}

.about p
{
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.about img
{
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer
{
    background: #8D6E63;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    margin-top: 100px;
    position: relative;
    bottom: 0;
}
