#image{
	position: fixed;
}

#cookie-banner {
	position: fixed;
	display: block:
	width: 100%;
	background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
	color: transparent;
	animation: bgColor 6s ease-in-out infinite;
	bottom: 0px;
	padding: 20px;
	z-index: 1000;
}
@keyframes bgColor {
	0%, 100% {
		background-position: 0 0;
	}
	50% {
		background-position: 100% 0;
	}
}
#cookie-banner .buttons{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.rejectButt{
	animation: rotato 10s infinite linear;
}
@keyframes rotato {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate (359deg);
	}
}

p {
	color: red;
}
