.images__thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image.hidden {
    display: none;
}

.image {
    display: block;
    height: 200px; 
    background-color: #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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



.btn {
    background-color: rgb(169, 219, 246);
    color: rgb(11, 62, 62);
    border: none;
    border-radius: 15%;
    width: 100px;
    height: 30px;
}
.btn.hiden {
    display: none;
}