body {
    background-color: #F8EDEB;
    color: #3D2C2E; 
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #8B2F2F; 
    text-align: center;
}

h2, h3 {
    color: #6E2929;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

img {
    display: block;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 10px
}
.container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 90vh; 
}

#rectangle {
    background: rgba(217, 164, 147, 0.8);
    padding: 10px;
    border-radius: 10px;
    max-width: 2000px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: #deb0a3;
    color: #4a2c2a; 
    font-size: 16px;
}

footer a {
    color: #4a2c2a;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}