
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 40px;
    background-color: #353a40;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border: white solid;
}

#scrollToTop.active {
    opacity: 1;
    visibility: visible;
}


.image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.image-container img {
    width: 100%; /* Ajusta el ancho según tus necesidades */
    border: 1px solid #ccc; /* Borde opcional */
}

.image-container p {
    text-align: center;
    margin-top: 5px;
}

