    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    html,
    body {
        font-family: 'Arial', Times, serif;
    }
    
    h1,
    h2,
    h3 {
        font-family: 'Bebas Neue', cursive;
        color: white;
    }
    
    .fondo {
        width: 100%;
        min-height: 100vh;
        background: url(../img/bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    
    .logo {
        height: 100px;
    }
    
    h1 {
        font-size: 3em;
    }
    
    .btn-color {
        background: #2d5a9e;
        color: white;
        min-width: 60%;
        height: 100px;
        padding-top: 35px;
    }
    
    .btn-color-red{
        background: #FF0008;
        color: white;
        min-width: 60%;
        height: 50px;
        padding-top: 15px;
    }
    
    @media only screen and (max-width: 768px) {
        .container-content {
            text-align: center;
        }
    }