
.frase {
    padding: 0 30px;
    margin-top: 150px;
    text-align: center;
    color: white;

    animation-name: aparece;
    animation-duration: 2s;
    animation-delay: o.5s;
 
}

.frase h1 {
    font-size: 55px;
    margin-bottom: 30px;
}

.frase h2 {
    font-size: 18px;
    font-weight: 600;
}

.frase a {
    margin-right: 40px;
    padding: 10px 30px;
    background-color: orange;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

.frase a:hover {
    background-color: white;
    color: orange;
}

#fraseproducto{
    display: none;
}

#fraseproveedor{
    display: none;
}

#fraseingresar{
    display: none;
}

/* CUANDO LA PANTALLA SE MENOR A 858px*/
@media (max-width:858px){

    .frase {
        padding: 0 30px;
        margin-top: 90px;
        text-align: center;
        color: white;
    }

    .frase h1 {
        font-size:40px;
        margin-bottom: 23px;
    }
    
    .frase h2 {
        font-size: 20px;
        font-weight: 600;
    }
}

/* CUANDO LA PANTALLA SE MENOR A px*/

@media (max-width:760px) {
    .frase {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 0 0px;
        margin-top: 140px;
        color: white;
    }

        .frase h1 {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .frase h2 {
            font-size: 14px;
            font-weight: 600;
        }

        .frase a {
            margin-right: 30px;
            padding: 10px 10px;

        }

        .frase div{
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-around; 
            gap: 10px;
        
         
        }
}

@keyframes aparece{
    0%{
        opacity: 0;
        transform:  translatey(75px);
    }

    100%{
        opacity: 1;
        transform: translatey(0);
    }
}


