body {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: black;
}

iframe {
	width: 300%;
	height: 300vh;
	z-index: 0;
	position: fixed;
	margin-left: -75%;
	margin-right: -75vh;
}

.inverted {
	-webkit-filter: invert(1);
}

.grayscale {
	-webkit-filter: grayscale(1);
}

.blur {
	-webkit-filter: blur(10px);
}

#circle {
	background: red;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	margin: auto;
	opacity: 0.5;
}


#project-container {
	opacity: 0;
	transition: opacity 0.7s linear;
}

/*.container-morning {
	position:relative;
}

.container-evening {
	position: relative;
	-webkit-filter: invert(1);
}

.container-night {
	position: relative;
	-webkit-filter: grayscale(1);
}

img{
  position: fixed;
  left: 42%;
  top: 42%;
  z-index: 4;
}*/