#cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: linear-gradient(45deg, #ff7e5f, #feb47b); color: #fff; padding: 15px; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; z-index: 9999; } #cookie-banner a { color: #fff; text-decoration: underline; } #cookie-banner .buttons { margin-top: 10px; display: flex; gap: 10px; } #cookie-banner button { background-color: rgba(255, 255, 255, 0.2); color: #fff; border: none; padding: 10px 15px; cursor: pointer; } @media (min-width: 768px) { #cookie-banner { flex-direction: row; justify-content: space-between; } } @media (min-width: 1024px) { #cookie-banner { max-width: 1200px; left: 50%; transform: translateX(-50%); } }