body {
    padding-top: 100px; /* Adjusted to ensure space below navbar */
    padding-bottom: 60px; /* Adjusted to prevent footer overlap */
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Avoid covering everything */
    width: 100%;
    max-width: 900px; /* Prevents excessive stretching */
    margin: 0 auto; /* Centers content */
    padding-bottom: 40px; /* Adds space before footer */
}

.image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: transform 0.6s ease-in-out, opacity 1s ease-in-out;
    opacity: 0;
    transform: translateY(100px);
}

.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.image:hover {
    transform: scale(1.1);
}

.btn-container {
    margin-top: 20px; /* Ensures spacing */
    margin-bottom: 40px; /* Extra spacing before footer */
}