
.frase{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.frase h3{
    width: 80%;
    text-align: center;
    color: #202133;
    font-size: 40px;
    font-family: "Glory", sans-serif;
    font-weight: 300;
}

.frase p{
    font-family: "Glory", sans-serif;
    width: 60%;
    text-align: center;
    font-size: 22px;
    width: 50%;
}

.creamate{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 70px;
    gap: 30px;
}

.creamate h1{
    animation: tada;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    font-size: 40px;
    font-weight: 700;
    font-family: "Glory", sans-serif;
}
.creamate h1 span{
    color: #054593;
}

.contain{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    width: 50%;
    background: #054593;
    padding: 35px;
    border-radius: 20px;
}

.contain p{
    color: #ffffff;
    width: 80%;
    text-align: justify;
    font-family: "Glory", sans-serif;
    font-size: 22px;
}

.contain p span{
    color: #79b8df;
    font-weight: 600;
}

@media (max-width: 950px) {
    .contain p{
        width: 95%;
    }
    
}

@media (max-width: 1000px){
    .contain, .frase p{
        text-align: justify;
        width: 90%;
    }
}

@keyframes back{
    0%{
        background: #b9a8d2;
    }
    16.6%{
        background: #a0d9d7;
    }
    100%{
        background: #b9a8d2;
    }
}