
body{
    background-color: #7a787d;
    background-image: url('../imgs/print-desktop.jpg');
    font-family: Arial, sans-serif;
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: top center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f1f1f1;
    padding: 30px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.cookie-banner h1{
    margin-top: 0;
    font-size:24px;
}


.cookie-banner p{
    margin-bottom:20px;
    line-height: 1.6em;
    color: #515151;
}

.cookie-banner button {
    background: #4CAF50;
    color: white;
    padding: 13px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 10px;
    min-width: 200px;
    display: block;
    font-size: 16px;
    margin: 0 auto;
}

.cookie-banner button.outline {
    background: transparent;
    margin-top: 10px;
    color: #4caf50;
}

.cookie-banner button.outline:hover{
    background: transparent!important;
}

.cookie-banner button:hover {
    background: #45a049;
}

@media (max-width:997px) {

    body{
        background-image: url('../imgs/print-tablet.jpg');
        background-position: top left;
        background-size: cover;
    }

}

@media (max-width:676px) {

    body{
        background-image: url('../imgs/print-mobile.jpg');
        background-position: top left;
        background-size: cover;
    }

    
    .cookie-banner {
    padding: 30px 24px;
}

}


