<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f7f7f7; 
    color: #333; 
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); 
    font-family: Merriweather, serif;
    z-index: 9999;
  }
  
  .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  #cookie-banner p {
    font-size: 16px;
    margin: 0;
    color: #333;
  }
  
  #cookie-banner a {
    color: #3898EC; 
    text-decoration: none;
    font-weight: 700;
  }
  
  #cookie-banner a:hover {
    color: #1a78b7; 
  }
  
  #accept-cookies {
    background-color: #3898EC; 
    color: white;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-left:50px
  }
  
  #accept-cookies:hover {
    background-color: #408697; 
  }</pre></body></html>