 #cookie-banner {
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 340px;
    text-align: center;
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#cookie-banner::backdrop {
    background-color: rgba(0, 0, 0, .55);
    backdrop-filter: blur(1px);
}

#cookie-banner h6 {
    margin: 0;
    font-size: 1.5em;
    color: darkred;
}

#cookie-banner p {
    font-size: 1rem;
    margin: 1rem 0;
    font-family: 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#cookie-banner a {
    display: block;
    outline: none;
    margin: 2rem 0;
    font-size: 1rem;
    color: dodgerblue;
    text-decoration: underline;
}

#cookie-banner .botones {
    margin-top: 1rem;
}

.botones button {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.botones .aceptar {
    background-color: green;
    color: whitesmoke;
}

.botones .rechazar {
    background-color: darkred;
    color: whitesmoke;
}

@media (min-width: 992px) {
/* Entre 992px y 1200px */
    #cookie-banner h6 {
        font-size: 2rem;
    }

    #cookie-banner p {
        font-size: 1.2rem;
    }

    #cookie-banner a {
        font-size: 1.2rem;
    }

    .botones .aceptar {
        font-size: 1.2rem;
    }

    .botones .rechazar {
        font-size: 1.2rem;
    }
}