
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.content {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 10px;
    max-width: 300px; /* Limit the width of each content section */
}
img {
    max-width: 100%;
    height: auto;
    border: 4px solid #ccc;
    border-radius: 8px;
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    cursor: pointer; /* Show pointer cursor on hover */
}
img.enlarged {
    transform: scale(1.5); /* Scale the image to 150% */
    z-index: 10; /* Bring the enlarged image to the front */
}
.text {
    font-size: 1.2em;
    color: #333;
    text-align: center; /* Center the text */
}
.button-container button {
    font-size: 1em;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin: 10px;
}
.button-container button:hover {
    background-color: #0056b3;
}
.title {
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 10px;
}

