    @font-face {
      font-family: 'Unbounded';
      src: url('../fonts/Unbounded-Regular.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Unbounded';
      src: url('../fonts/Unbounded-Bold.woff2') format('woff2'); 
      font-weight: bold;
      font-style: normal;
    }

    body {
      margin: 0;
      font-family: 'Unbounded', sans-serif;
      color: hsl(0, 0%, 100%);
      background-color: #242424;
      font-size: 16px;

      display: flex;
      flex-direction: column;
      min-height: 100vh; /* Ensure the body takes up the full height of the viewport */
      padding-bottom: 2rem;
    }

    .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: background-image 1s ease-in-out;
    background-color: #242424;
    filter: contrast(1.2) brightness(0.8) sepia(1); /* Duotone effect */
    animation: backgroundHue 20s infinite linear; /* Add hue-rotate animation */
  }

  @keyframes backgroundHue {
    0% {
      filter: contrast(1.2) brightness(0.8) sepia(1) hue-rotate(0deg);
    }
    100% {
      filter: contrast(1.2) brightness(0.8) sepia(1) hue-rotate(360deg);
    }
  }

    .container {
      padding: 2rem;
      font-size: 1em;
    }

    .content {
      padding: 2rem;
    }
    section{
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .content {
        display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
      gap: 2rem; /* Space between grid items */
      padding: 2rem;
      margin-top: auto; /* Push the grid to the bottom of the page */
      }
    }

    @media (min-width: 768px) {
      .container {
       font-size: 1.75rem;
      }
    }

    .contact {
      font-size: 13px;
    }
   


    h1 {
      font-size: 3em;
      margin: 0;
    }

    p {
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 1rem;
    }

    .buttons a {
    display: inline-block; /* Makes the link behave like a button */
    padding: 0.5rem 0.75rem;
    text-decoration: none; /* Removes the underline */
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75em;
    text-align: center;
    transition: transform 0.1s ease-in-out; /* Smooth transition */ 
    
  }

  .buttons a:hover {
    transform: scale(1.1); /* Slightly enlarges the button on hover */
   
  }

    p.kicker {
      margin: 0;
    }
    .spotify { background-color: #1DB954;color: #fff;}
    .soundcloud { background-color: #ff6200; color: #fff;}
    .apple { background-color: #FC3C44;color: #fff; }
    .instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); color: #fff;}
    .tiktok { background-color: #010101;  color: #fff;  }
    .youtube { background-color: #FF0000; color: #fff; }
    .coffee { background-color: #FFDD00; color: #000; }
    .bandcamp { background-color: #1CA0C3; color: #fff; }

.footer {
    margin: 2rem;
}
  
/* Cookie Banner Styles */

      .embed-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000000;
        
        border-radius: 12px;
        width: 100%;
        height: 352px; /* Match the iframe height */
        text-align: center;
        max-width: 500px;
        
      }
      
      .cookie-banner-inline {
        padding: 2rem;
      }
      
      .cookie-banner-inline p {
        margin: 0 0 10px;
        font-size: 14px;
      }
      
      .cookie-banner-inline button {
        padding: 5px 10px;
        font-size: 14px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
      
      .cookie-banner-inline button:hover {
        background-color: #0056b3;
      }

      iframe{
        border: none;
        max-width: 500px;
        
      }


      #cookie-einstellungen {
        margin-top: 20px;
      }
      
      #block-cookies-btn {
        padding: 10px 20px;
        font-size: 16px;
        background-color: #ff5f5f;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
      
      #block-cookies-btn:hover {
        background-color: #e04e4e;
      }

      a {
        color: hsl(0, 0%, 100%);
      }