#cookie-notice { position: fixed; bottom: 0; left: 0; width: 90%; max-width: 400px; padding: 15px; background: linear-gradient(to right, #ff7e5f, #feb47b); color: #fff; box-sizing: border-box; display: flex; flex-direction: column; gap: 10px; z-index: 1000; } #cookie-notice p { margin: 0 0 5px 0; } #cookie-notice a { color: #fff; text-decoration: underline; } #cookie-notice .buttons { display: flex; gap: 10px; } #cookie-notice button { background-color: #ff5e57; color: #fff; border: none; padding: 10px 15px; cursor: pointer; } @media(min-width: 768px) { #cookie-notice { flex-direction: row; justify-content: space-between; align-items: center; } }