* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.container {
	position: absolute;
	top: 30vh;
	padding: 10px;
}

.declaration {
	font-size: 1.2em;
	text-align: center;
	color: darkolivegreen;
}

.direction {
	opacity: 0.7;
	font-size: 1.1em;
	color: black;
}

.msg {
	display: none;
	margin-top: 5px;
}

.deleteCookie {
	display: none;
	padding: 3px 6px;
	background-color: black;
	color: white;
	border: none;
	border-radius: 2px;
	margin-top: 5px;
}

.cookie-box {
	position: fixed;
	top: 60vh;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 300px;
	background-color: #d8f2f1;
	text-align: center;
	padding: 10px;
	animation: 5s appear ease forwards;
	border: 1px solid gray;
}

@keyframes appear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes disappear {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.cookie-box .svg-cross {
	position: absolute;	
	top: 10px;
	right: 10px;
	cursor: pointer;
	padding: 2px;
	border: 1px solid black;
}

.cookie-box button {
	width: 100px;
	margin: 5px auto;
	padding: 3px 5px;
	border: none;
	color: white;
	background-color: black;
}