#consent-banner{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background:#222;
	color:#fff;
	padding:15px;
	box-sizing:border-box;
	display:none;
	flex-direction:column;
	align-items:center;
	z-index:100;
}
#consent-banner a{
	color:#1e90ff;
	text-decoration:none;
}
#consent-banner .buttons{
	margin-top:10px;
	display:flex;
	gap:10px;
}
#consent-banner button{
	background:#1e90ff;
	color:#fff;
	border:none;
	padding:8px 12px;
	cursor:pointer;
}
@media(min-width:600px){
	#consent-banner{
		flex-direction:row;
		justify-content:space-between;
	}
}