@import url('https://fonts.googleapis.com/css?family=Fira+Sans:700|Mukta:500|Hind+Guntur:300');
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}

body {
	--color-text: #F4F4F4;
	--color-bg: #131313;
	--color-link: #936F72;
	--color-link-hover: #FC3F4A;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: 'Hind Guntur', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

.frame {
	padding: 3rem 5vw;
	position: relative;
	z-index: 1000;
}

.content-box {
	height: calc(100vh - 100vw - 3rem);
	min-height: 25vw;
	/*background-color: var(--color-bg);*/
}

.content__logo-wrap, .content__text-wrap {
	width: 50%;
	margin-top: calc((100vh - 100vw - 3rem) / 2);
    transform: translateY(-50%);
}

.content__logo-wrap {
	float: left;
	text-align: right;
}

.logo {
	width: 10rem;
	max-width: 100%;
	height: auto;
}

.content__text-wrap {
	float: right;
}

.name {
	font-size: 3rem;
	font-size: calc(2.5rem + 0.5 * ((100vw - 60vw) / 40));
	font-weight: normal;
	text-transform: lowercase;
	font-family: 'Fira Sans', sans-serif; /* normally used for headlines, maybe in uppercase? */
	font-family: 'Hind Guntur', sans-serif;
}

.hint {
	font-size: 1rem;
	color: #CECFD2;
	position: relative;
	top: -2rem;
	text-transform: lowercase;
	font-weight: 300;
	font-family: 'Hind Guntur', sans-serif;
}

.frame a {
	text-transform: lowercase;
}


.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
}

.container { clear: both; }

@media screen and (max-aspect-ratio: 1/1) and (min-aspect-ratio: 3/4) {
	.frame {
		padding-top: calc(0rem + 3 * ((100vh - 100vw)/10));
	}
	.name {
		font-size: calc(2rem + 1 * ((100vw - 100vh) / 40));
	}
	.content__logo-wrap, .content__text-wrap {
		margin-top: 0;
    	transform: translateY(0);
	}
}

@media screen and (min-aspect-ratio: 1/1) {
	.content__logo-wrap, .content__text-wrap {
		margin-top: 0;
		transform: translateY(0);
	}
}

@media screen and (min-aspect-ratio: 1/1) and (min-height: 20rem) and (max-height: 60rem) {
	.frame {
		padding-top: 0.5rem;
	}
	.logo {
		width: 5rem;
	}
	.name {
		font-size: 2rem;
		margin: 0;
	}
	.content-box {
		min-height: 0;
	}
	.content__text-wrap {
		float: none;
	}
	.content__logo-wrap, .content__text-wrap {
		width: auto;
	}
}

@media screen and (min-aspect-ratio: 1/1) and (min-height: 40rem) and (max-height: 60rem) {
	.frame {
		padding-top: 1.5rem;
	}
	.logo {
		width: 8rem;
	}
	.name {
		font-size: 3rem;
		margin: 0;
	}
}

@media screen and (min-aspect-ratio: 1/1) and (min-height: 60rem) {
	.frame {
		grid-template-columns: 75vh auto;
		grid-template-rows: auto auto auto auto;
		grid-template-areas: '... ...'
							'image content'
							'... ...'
							'... ...';
	}
}

@media screen and (min-aspect-ratio: 4/3) {
	.frame {
		position: fixed;
		text-align: left;
		z-index: 10000;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 3rem;
		pointer-events: none;
		grid-template-columns: 100vh auto;
		grid-template-rows: auto auto auto auto;
		grid-template-areas: '... ...'
							'image content'
							'... ...'
							'... ...';
	}
	.content-box {
		grid-area: content;
		min-height: auto;
		height: auto;
	}

	.content__logo-wrap, .content__text-wrap {
		margin-top: 0;
    	transform: translateY(0);
	}

	.content__logo-wrap {
		text-align: left;
		width: auto;
	}

	.logo {
		width: 14rem;
	}

	.content__text-wrap {
		width: 100%;
		float: none;
		padding-top: 2rem;
	}

	.name {
		margin: 0;
	}

	.frame a {
		pointer-events: auto;
	}

	.content {
		height: 100vh;
		justify-content: center;
	}
}

@media screen and (min-aspect-ratio: 4/3) and (max-height: 50rem) {
	.logo {
		width: 8rem;
	}
	.name {
		font-size: 2rem;
		margin: 0;
	}
}

@media screen and (min-aspect-ratio: 4/3) and (max-aspect-ratio: 943/594) {
	.content__logo-wrap {
		width: 100%;
	}
}

@media screen and (min-aspect-ratio: 4/3) and (max-aspect-ratio: 814/594) {
	.frame {
		grid-template-columns: 90vh auto;
	}
}

/*TEST!!!!!!!!!*/
canvas {
	position: absolute;
	bottom: 0;
}