/* Apply a gradient background */
body {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
}

/* Style the heading */
header h1 {
    margin: 20px 0;
    font-size: 3em;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Style the section containing the images */
.image-section {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap; /* Allows the images to stack on smaller screens */
}

/* Style the image containers */
.image-container {
    margin: 20px;
    text-align: center;
    flex: 1; /* Ensures images take up equal space on large screens */
    min-width: 250px; /* Minimum width for each container */
}

.image-container img {
    max-width: 100%; /* Makes images responsive */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-container p {
    margin-top: 10px;
    font-size: 1.2em;
    color: #ffffff;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .image-section {
        flex-direction: column; /* Stack images vertically */
    }

    .image-container {
        margin: 10px 0;
    }
}
