* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.red {
	color: #981c20;
}

.email {
	color: #981c20;
	text-decoration: none;
}

section.branding {
	width: 95vw;
	margin: 0 auto;
}

body,
main {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

main {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: 'Roboto', sans-serif;
}

.content {
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 20px 0;
}

main section.branding {
	display: flex;
	justify-content: center;
}

main section.branding img {
	width: 95vw !important;
	max-width: 400px;
}

section.info {
	margin: 0 auto;
	margin-top: 10px;
	text-align: center;
	width: 95vw;
}

main h1 {
	line-height: 1.2;
	text-align: center;
	font-weight: 400;
}

main h2 {
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	font-weight: 400;
}

main p {
	line-height: 1.5;
	text-align: center;
	font-weight: 300;
}

.code-container {
	margin: 15px 0 5px 0;
	padding: 12px 0 14px 0;
}

code {
	line-height: 1;
	margin-top: 10px;
	text-align: center;
	background: #222;
	color: #fff;
	padding: 15px 30px;
}

.margin-some {
	margin-top: 15px;
}

.margin-most {
	margin-top: 30px;
}

section.actions {
	margin: 0 auto;
	margin-top: 30px;
	padding-bottom: 15px;
	width: 95vw;
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

main .btn-wrapper {
	display: flex;
	flex-direction: row;
}

main .btn {
	all: unset;
	cursor: pointer;
	background-color: #981c20;
	color: #ffffff;
	margin: 0 auto;
	padding: 15px 40px;
	margin: 2px;
	max-width: 95vw;
	white-space: nowrap;
	overflow-x: auto;
}

textarea {
	resize: none;
	height: 1px;
	width: 1px;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 700px) {
	.code-container {
		overflow-y: hidden;
		overflow-x: auto;
		max-width: 95vw;
		margin: 15px auto 5px auto;
	}

	code {
		white-space: nowrap;
	}

	main p {
		max-width: 95vw;
	}
}
