/* VARIABLES  */

:root {
    --global-color-primary: #FFFFFF;
    --global-color-secondary: #00D3A9;
   /* --global-color-secondary: #44D7B6; */
}

/* STYLES  */

html,
body {
	height: 100%;
 	margin: 0;
	background-size: cover;
	background - repeat: no-repeat;
	background - attachment: fixed;
}

body {
	font-family: 'Open Sans', Helvetica, sans-serif;
	font-size: 19px;
	font-weight: 300;
	color: #FFFFFF;
	background-color: #000000;
}

a {
	color: var(--global-color-secondary);
	text-decoration: none;
	
}

.wrapper {
	display: flex;
	flex-flow: column;
 	height: 100%;
	min-width: 800px;
	max-width: 1920px;
}

.wrapper:after {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
	/*background:
		linear-gradient(225deg, rgba(254,252,121,0.7), rgba(254,252,121,0) 65%),		
		linear-gradient(45deg, rgba(123,44,214,1), rgba(123,44,214,0) 65%),
		linear-gradient(135deg, rgba(0,211,169,1), rgba(0,211,169,0) 65%),
		linear-gradient(315deg, rgba(254,48,145,1), rgba(254,48,145,0) 55%);
	*/
}

.header {
 	flex: 0 1 auto;
	padding: 130px 130px 0px 130px;
}

.content {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	padding: 130px;
	min-height: 250px;
	max-width: 620px;
}

.content p {
	line-height: 1.5;
	max-width: 700px;
}

.tagline {
	font-family: 'Inter', Helvetica, sans-serif;
	font-size: 70px;
	font-weight: 700;
	line-height: 1.2;
}

.fade-in {
	animation: fadeIn ease 1s;
	-webkit-animation: fadeIn ease 1s;
	-moz-animation: fadeIn ease 10s;
	-o-animation: fadeIn ease 10s;
	-ms-animation: fadeIn ease 10s;
}

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

.footer {
	flex: 0 1 40px;
	padding: 0px 130px 130px 130px;
	overflow: hidden;
}

.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
	max-width: 680px;
}

.navigation li {
	display: inline-block;
	padding: 0px 50px 0px 0px;
}

/* MONOGRAM */

#monogram #background {
	fill: var(--global-color-secondary);
}
#monogram #foreground {
	fill: #FFFFFF;
}	

/* MEDIA QUERIES */

@media screen and (max-width: 1280px) {
/*	.wrapper {
		min-width: unset !important;
	}-*/
	.header {
		padding: 120px 120px 0px 120px;
	}
	.content {
		padding: 120px;
	}
	.footer {
		padding: 0px 120px 120px 120px;
	}
	.navigation li {
		padding: 0px 40px 0px 0px;
	}
	
}
@media only screen and (max-width: 1024px) {
/*	.wrapper {
		min-width: unset !important;
	}-*/
	.header {
		padding: 100px 100px 0px 100px;
	}
	.content {
		padding: 100px;
	}
	.footer {
		padding: 0px 100px 100px 100px;
	}
	.navigation li {
		padding: 0px 30px 0px 0px;
	}
	
	
}
@media only screen and (max-width: 768px) {
	body{
		font-size: 17px;
	}
	.wrapper {
		min-width: unset !important;
	}
	.header {
		padding: 60px 60px 0px 60px;
	}
	.content {
		padding: 60px;
	}
	.content p {
		line-height: 1.5;
	}
	.footer {
		padding: 0px 60px 60px 60px;
	}	
}
@media only screen and (max-width: 480px) {
	body{
		font-size: 20px;
	}
	.wrapper {
		min-width: unset !important;
		display: block;
	}
	.header {
		padding: 32px 28px 0px 28px;
	}
	.content {
		padding: 28px;	
	}
	.content p {
		line-height: 1.5;
	}
	.footer {
		padding: 0px 28px 28px 28px;
	}
	.navigation li {
		padding: 0px 20px 0px 0px;
	}
	.tagline {
		font-size: 33px;
		line-height: 1.1;
	}
	
}
@media only screen and (max-width: 320px) {
	body{
		font-size: 17px;
	}
	.wrapper {
		min-width: unset !important;
		display: block;
		
	}
	.header {
		padding: 22px 20px 0px 20px;
	}
	.content {
		padding: 20px;
	}
	.content p {
		line-height: 1.5;
	}
	.footer {
		padding: 0px 20px 20px 20px;
	}
	.tagline {
		font-size: 20px;
		line-height: 1.2;
	}
	
}