@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.texto{
    font-size: 135px;
    text-transform: uppercase;

    color: #fff;
}

@media only screen and (max-width: 500px) {
    .texto {
        font-size: 50px;    
    }
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }
    
    body{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }

}