/* CSS Document
body {
  background-size: 5vw 5vw;
  background-image:
    linear-gradient(to right, grey 1px, transparent 1px),
    linear-gradient(to bottom, grey 1px, transparent 1px);
} */
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container, .container2 {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.container, .container2 {
		max-width: 1140px;
	}
}
@media (min-width: 1452px) {
	.container, .container2 {
		max-width: 1360px;
	}
}
@media (min-height: 1024px) {
	.h-50 {
		height: 50vh;
	}
}
@media (min-height: 0px) {
	.h-50 {
		min-height: 70vh;
	}
}
@media (min-height: 1024px) {
	.h-50 {
		min-height: 50vh;
	}
}
html,
body  {
	width:100vw;
}
body > header {
	position: absolute;
	top: 0;
	width:100%;
	z-index: 999999999;
	background: rgba(250, 250, 250, 0.00);
	-webkit-transition: background-color 500ms linear;
	-ms-transition: background-color 500ms linear;
	transition: background-color 500ms linear;
}
body > header.scrollGone {
	background: rgba(250, 250, 250, 1);
	-webkit-transition: background-color 500ms linear;
	-ms-transition: background-color 500ms linear;
	transition: background-color 500ms linear
}
#logo {
	opacity: 0;
	margin-left: 5%;
	margin-top: 2.5vh;
	-webkit-transition: margin 1s linear, opacity .2s linear, width .05s linear;
	-ms-transition: margin 1s linear, opacity .2s linear, width .05s linear;
	transition: margin 1s linear, opacity .2s linear, width .05s linear;
}
.done #logo {
	opacity: 1;
	margin-left: 0;
}
header nav {
	position: fixed;
	opacity: 0;
	top: 4vh;
	right: 10vh;
	z-index: 999;
	-webkit-transition: right 1s ease-out, opacity 1s linear;
	-ms-transition: right 1s ease-out, opacity 1s linear;
	transition: right 1s ease-out, opacity 1s linear;
}
.done header nav {
	opacity: 1;
	right: 5vh;
}
#main-image {
	position: fixed;
	top: 40vh;
	left: 40vw;
	z-index: 2;
}
#main-text {
	position: absolute; 
	top: 171vh;
    	right: 120vw;
    	zoom: 0.5;
	filter: blur(25px);
    opacity: 0.5;
	z-index: 1;
/*	-webkit-transition: zoom 0s linear, right 0s linear, top .2s linear;
	-ms-transition: zoom 0s linear, right 0s linear, top .2s linear;
	transition: zoom 0s linear, right 0s linear, top .2s linear;
*/
}
body > main {
	position: absolute;
	top: 195vh;
	width: 100vw;
	z-index: 4;
}
section.circle-container.circle-30 {
	position: absolute;
	top: 60px;
	left: 5vw;
	transform: rotate(-8deg);
}
.img-cell {
	overflow: hidden;
	position: relative;
}
.img-cell > figure {
	position: absolute;
	top: -10vw;
	width: 75vw;
	height: 75vw;
}
.img-cell > figure > img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}