@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&family=Nunito:ital,wght@1,200&family=Playfair&family=Prompt:ital,wght@0,300;1,300&family=Raleway:ital,wght@1,300&display=swap');
.boton_vr{
    background-color: #30B907;
    color: #F50087;
    padding: 1em 2em;
    margin-top: 1rem;
    font-size: 1.5em;
    text-decoration: none;
    /*  text-transform: uppercase;*/
    font-weight: bold;
    border-radius: 3rem;
    width: 90%;
    text-align: center;
    transition: 0.3s ease-out;
    font-family: 'Prompt', sans-serif;
}

.boton_vr:hover{
    background-color: #F50087;
    color: #30B907;
    cursor: pointer;
    transition: 0.4s ease-in;
} 

.boton_r{
    background-color: #F50087;
    color: #ffff;
    padding: 1em 3em;
    margin-top: 1rem;
    font-size: 1.5em;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
}

.boton_v{
    background-color: #30B907;
    color: #ffff;
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
}

@media (min-width: 480px){
    .boton_vr{
        width: auto;
    }
    .boton_v{
        width: auto;
    }
    .boton_r{
        width: auto;
    }
}