html, body {
	font-family: 'Assistant', sans-serif;
	background-color: #ffffff;
	color: #EBEBEA;
	font-size: 10px;
	margin: 0;
}

.container {
	display: flex;
	flex-flow: column wrap;
	height: 100vh;
}

.row {
	display: flex;
	justify-content: center;
}

.logo-holder {
	height: 20vh;
	justify-content: flex-end;
}

.logo {
	height: 20vh;
	width: auto;
	position: fixed;
	right: 1rem;
	top: 0;
}

.corp {
	background-color: #3B3834;
	height: 80vh;
}

p {
	margin-top: 0;
	margin-bottom: 0;
}

.name {
	margin-top: 8rem;
	font-family: 'Sue Ellen Francisco', cursive;
	color: #D12C1F;
	transform: rotate(-3deg);
	font-size: 12rem;
}

.text {
	font-size: 6rem;
}

@media all and (max-width: 800px) {
  .container {
    flex-flow: column;
  }

  .name {
	  font-size: 6rem;
	  margin-top: 4rem;
  }

  .text {
	  font-size: 3rem;
  }
}
