body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fef5e7; /* Soft pastel background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 50vh; /* Make image take 50% of view height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quote {
    font-size: 1.2em;
    font-style: italic;
    color: #555;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.quote blockquote {
    margin: 0;
    padding: 0;
    display: inline; /* Ensure quote and quotation marks are on the same line */
}

.quote:before {
    font-size: 1.5em;
    color: #f08a5d;
    vertical-align: top;
    margin-right: 5px;
}

.quote:after {
    font-size: 1.5em;
    color: #f08a5d;
    vertical-align: bottom;
    margin-left: 5px;
}

/* Responsive Design for Phones */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .image-container {
        height: 45vh; /* Adjust image height slightly for smaller screens */
    }

    .quote {
        font-size: 1em; /* Adjust font size for better readability on small screens */
    }
}

.language-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.9em;
    font-weight: bold;
}

.language-toggle a {
    text-decoration: none;
    color: #555;
    margin: 0 5px;
}

.language-toggle a:hover {
    text-decoration: underline;
    color: #f08a5d;
}
