.demo-container {
    background: brown !important;
    text-align: center;
    width: 800px;
    height: 350px;
    margin: 0 auto;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px 0 10px; /* El padding inferior es 0, eliminando espacio abajo */
    gap: 5px;
}

.demos {
    color: white;
    font-weight: bold;
    font-size: 14px;
   
}

.abellan {
    width: 120px;
    height: 40px;
}

.persona {
    width: 80px;
    height: 80px;
}

/* Reducir más el padding inferior en pantallas pequeñas */
@media screen and (max-width: 600px) {
    .demo-container {
        width: 90%;
        height: auto;
        padding: 3px 10px 0 10px; /* Menos espacio abajo */
    }

    .abellan {
        width: 100px;
        height: 35px;
    }

    .persona {
        width: 70px;
        height: 70px;
    }

    .demos {
        font-size: 12px;
        margin-bottom: 2px; /* Menos margen entre los textos */
    }
}
