body { margin: 0; }
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(45deg, #6a11cb, #2575fc);
	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 {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.cookie-banner button {
	background: #fff;
	color: #2575fc;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
}
@media (min-width: 768px) {
	.cookie-banner {
		flex-direction: row;
		justify-content: space-between;
	}
}