/* Desktop */
@media (min-width: 800px) {
    .datalectro {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .item1 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;
        width: 40%;
    }

    .box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: 80%;
        width: 40%;
    }

    .item2,
    .item3  {
        height: 40%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Phone */
@media (max-width: 800px) {
    
}