* {
	margin: 0;
	padding: 0;
}

body {
	box-sizing: border-box;
	height: 100vh;
	width: 100vw;
	border: 15px solid #46807f;
	color: #083650;
	position: fixed;
	z-index: 10000;
	font-family: space_groteskmedium, sans-serif;
}

.row-container {
	margin: 60px 70px;
	display: flex;
	justify-content: space-between;
}

.logo {
	background: url('logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	height: 200px;
	width: 100px;
}

.text {
	text-align: right;
	width: 62.5em;
	margin-top: 150px;
}

.text h2 {
	display: inline-block;
	font-family: termina, sans-serif;
	font-weight: 700;
	font-size: 4em;
}

.underline {
	background-size: 1px 1em;
	box-shadow: inset 0 -0.35em white, inset 0 -0.6em #80c6ab;
	display: inline;
}

.text p {
	font-size: 1.1em;
	font-family: space_grotesksemibold, sans-serif;
	text-align: left;
	width: 500px;
}

/** Footer **/

.footer {
	position: fixed;
	bottom: 60px;
	right: 85px;
}

.footer-after {
	position: fixed;
	bottom: calc(60px + .5em);
	right: 0;
	height: 2px;
	width: 75px;
	background: #00a1c1; 
	z-index: -1;
}

/** Links **/

.links {
	display: flex;
	list-style-type: none;
}

.links li {
	margin-left: 20px;
	font-family: space_groteskbold;
}

.links a {
	text-decoration: none;
	color: #00a1c1;
	padding: 10px;
	border: solid 2px #fff;
	transition: .3s;
}

.links a:hover {
	border-color: #00a1c1;
}

/** Media queries **/

@media (max-width: 1024px) {
  .logo {
		width: 80px;
		height: 160px;
	}

	.text {
		width: 47em;
	}

	.text h2 {
		font-size: 3em;
		line-height: 1.2em;
	}
}

@media (max-width: 768px) {
  .row-container {
  	display: block;
  }

  .text {
  	width: 100%;
  	margin-top: 50px;
  }
}

@media (max-width: 500px) {
	.row-container {
		margin: 0;
		padding: 30px;
	}

	.text h2 {
		font-size: 2.2em;
		margin-top: 30px;
		margin-bottom: 10px;
	}

	.text p {
		font-size: 1em;
		width: initial;
	}

	.footer {
		left: auto;
		right: auto;
	}

	.footer-after {
		width: 30px;
	}
}

@media (max-width: 400px) {
	.links {
		flex-direction: column;
	}

	.links a {
		border-color: transparent;
	}

	.footer-after {
	width: 130px;
	}

	body {
		border: 10px solid #46807f;;
	}
}