.lab-home {
    margin-top: 1rem;
    font-family: var(--font1);
    font-size: 3rem;
    font-weight: bold;
    color: var(--salmon);
    text-shadow: 0px 0px 8px black;
}
.lab-description {
    font-size: 0.8rem;
    font-family: var(--font1);
    color: var(--blanco);
    text-align: center;
}
.container-features {
    width: 96%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    margin-top: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.box-features {
    width: 16rem;
    height: 10rem;
    border: 1px solid grey;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    
}
.box-tit-features {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.fa-faucet-drip, .fa-arrow-pointer, .fa-gamepad {
    font-size: 1.5rem;
    color: var(--salmon);
    text-shadow: 0px 0px 4px black;
}
.text-features {
    font-family: var(--font1);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--salmon);
    text-shadow: 0px 0px 4px black;
}
.desc-features {
    font-family: var(--font1);
    color: var(--blanco);
    text-align: center;
    font-size: 0.8rem;
}
.container-reports {
    width: 90%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    margin-top: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label-reports {
    font-family: var(--font1);
    font-size: 1.4rem;
    color: var(--salmon);
    text-shadow: 0px 0px 6px black;
}
.reports-description {
    font-family: var(--font1);
    font-size: 0.9rem;
    color: var(--blanco);
    text-align: center;
}
.box-chart {
    width: 90%;
    height: 20rem;
    margin-top: 1rem;
}


@media (min-width: 768px) {
    .lab-home {
        font-size: 4rem;
    }
    .lab-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .container-features {
        flex-direction: row;
        justify-content: center;
    }
}