.thumbnail {
    width: 150px;
    cursor: pointer;
}

/* Estilo para la ventana modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 120px;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Imagen en la ventana modal */
.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
}

/* Estilo para el botón de cerrar */
.close {
    position: absolute;
    top: 120px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}