html {
	font-family: sans-serif;
}

body {
	margin: 0;
}

p {
	margin: 0;
}

.Container {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Info {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px;
}
#Level {
	right: 2%;
	bottom: 35%;
	position: absolute;
	width: fit-content;
}
#Palette {
	position: absolute;
	right: 1.5%;
	bottom: 25%;
}

.background {
    position: absolute;
    top: 50%;
    left: 50%;
	height: 90vmin;
	aspect-ratio: 1/1;
	transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 1;
}

.WeatherVane {
	height: 90vmin;
	aspect-ratio: 1/1;
	fill: red;
	animation: pulse infinite 3s;
    z-index: 2;
}

.WeatherVane svg {
	width: 100%;
	height: 100%;
}

@keyframes pulse {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}