* {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}

#cookieBanner {
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: 20;
	top: 0%;
	left: 0%;
	background-color: #000000cc;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
}
#cookieBanner img {
	width: 50px;
}
#cookieBanner div {
	width: 350px;
	height: 350px;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 15px;
	border-radius: 25px;
	color: #706f6f;
}
#cookieBanner div h2 {
	margin: 10px 0px;
}
#cookieBanner div p {
	margin-top: 10px;
	font-size: 12px;
	text-align: left;
}
#cookieBanner div p a {
	color: #706f6f;
}
#acceptCookies {
	margin-top: 25px;
	width: 80%;
	height: 35px;
	font-size: 16px;
	font-weight: 600;
	background: #76b82ab2;
	color: #ffffff;
	border: 2px solid #76b82ab2;
	transition: 350ms;
	border-radius: 10px;
}
#acceptCookies:hover {
	cursor: pointer;
	background: none;
	color: #76b82ab2;
	transition: 350ms;
}
#rejectCookies {
	margin-top: 15px;
	width: 80%;
	height: 35px;
	font-size: 16px;
	font-weight: 600;
	background: #a33017;
	color: #ffffff;
	border: 2px solid #a33017;
	transition: 350ms;
	border-radius: 10px;
}
#rejectCookies:hover {
	cursor: pointer;
	background: none;
	color: #a33017;
	transition: 350ms;
}
@media (max-width: 400px) {
	#cookieBanner div {
		width: 280px;
		height: 400px;
	}
}
