/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Container Styling */
.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content higher on the page */
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 150px 20px 20px; /* Add padding to adjust position */
    background-color: #f9f9f9;
}

/* Image Styling */
.image {
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px; /* Optional for aesthetic improvement */
}

/* Text Section Styling */
.text-section {
    padding: 10px 20px;
}

.text {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Responsive Design for Small Screens */
@media (max-width: 600px) {
    .text {
        font-size: 0.9rem;
    }
    .container {
        padding: 30px 15px 15px; /* Adjust for smaller screens */
    }
}
