#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	background: linear-gradient(90deg,#e66465,#9198e5);
	color: #fff;
	box-sizing: border-box;
	z-index: 100;
}
#cookie-banner p {
	margin: 0;
	text-align: center;
}
#cookie-banner .buttons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
#cookie-banner button {
	background: rgba(255,255,255,0.2);
	border: none;
	color: #fff;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 4px;
}
@media(min-width:768px){
	#cookie-banner {
		flex-direction: row;
		justify-content: space-between;
		max-width: 600px;
		margin: 0 auto;
	}
}