/* Basic styling for the card container */
.card-container {
    display: flex;
    flex-direction: column;
    /* Arrange cards vertically */
    gap: 30px;
    /* Add gap between cards */
    padding: 0;
    max-height: 100%;
    overflow: hidden;
    /* Remove padding */
    z-index: -1;
    flex-shrink: 0;
    flex: 0 0 auto;
    width: auto;
}


/* Basic styling for the individual cards */
.card {
    width: 30vh;
    height: 40vh;

    border: 1px solid #ccc;
    /* Add border */
    border-radius: 0 15px 0 0;
    background-size: cover;
    /* Make the image cover the card */
    background-position: center;
    /* Center the image */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
    opacity: 0;
    position: relative;

}


#card1 {
    width: 90%;
    height: 60%;
    background-color: #AFBBE0;
    margin-top: 5px;
    margin-left: 15px;
    opacity: 0;
    /* Initially hidden */
    animation: fadeSlideInBottom 2s forwards;
    /* Fade in animation */
    border-radius: 15px 15px 15px 15px;
}


#card1 img {

    animation: fadeSlideInBottom 2s step-end;
}

#card2 {
    border-radius: 15px 15px 15px 15px;
    width: 90%;
    height: 40%;
    background-color: #AFBBE0;
    ;
    margin-left: 15px;
    opacity: 0;
    /* Initially hidden */
    animation: fadeSlideInBottom 2s forwards;
    /* Fade in animation */
}


#card2 img {

    animation: fadeSlideInBottom 2s forwards;
}

#card3 {
    width: 90%;
    height: 30%;
    background-color: #AFBBE0;

    border-radius: 15px 15px 15px 15px;
    margin-left: 15px;
    opacity: 0;
    /* Initially hidden */
    animation: fadeSlideInBottom 2s forwards;
    /* Fade in animation */
}


#card3 img {

    animation: fadeSlideInBottom 2s forwards;
}

#card4 {
    width: 90%;
    height: 60%;
    background-color: #AFBBE0;

    border-radius: 15px 15px 15px 15px;
    margin-left: 15px;
    opacity: 0;
    /* Initially hidden */
    animation: fadeSlideInBottom 2s forwards;
    /* Fade in animation */
}


#card4 img {

    animation: fadeSlideInBottom 2s forwards;
}

#card5 {
    width: 100%;
    height: 60%;
    background-color: #AFBBE0;

    border-radius: 15px 15px 15px 15px;
    margin-left: 15px;
    opacity: 0;
    /* Initially hidden */
    animation: fadeSlideInBottom 2s forwards;
    /* Fade in animation */
}


#card5 img {

    animation: fadeSlideInBottom 2s forwards;
}

#card6 {
    width: 100%;
    height: 40%;
    background-color: #AFBBE0;

    border-radius: 15px 15px 15px 15px;
    margin-left: 15px;
    opacity: 0;
    /* Initially hidden */
    animation: fadeSlideInBottom 2s forwards;
    /* Fade in animation */
}


#card6 img {

    animation: fadeSlideInBottom 2s forwards;
}

.card-row {
    height: 100vh;
}

.card-row1 {
    width: 40%;
}

.card-row2 {
    width: 40%;
}

.card-row3 {
    width: 20%;
}


@keyframes fadeSlideInBottom {
    from {
        opacity: 0;
        transform: translateY(50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}