@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #01050E;
    --text-color: #ffffff;
    --accent-color: #ff4d4d;
    --secondary-bg: #13131a;
    --button-color: #3399ff;
    --card-bg: #1c1c24;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

body, html {
  overflow-x: hidden;
  width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(19, 23, 31, 0.95);
    color: #ffffff;
    padding: 1em;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 1em 0 0;
    font-size: 0.9em;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #3A86FF;
    color: white;
}

.cookie-accept:hover {
    background-color: #2a76ef;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Fügen Sie diese Regel hinzu, um sicherzustellen, dass der main-Bereich den Standard-Hintergrund beibehält */
main {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
    footer .container {
      flex-direction: column;
      align-items: center;
    }
  
    footer .footer-column {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin: 0 0 1em 0;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}