* {
	box-sizing: border-box;
	font-family: sans-serif;
}

body {
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
}

.blue-strip {
	width: 100%;
	height: 20px;
	background-color: #5bcffa;
}

h1, h2, h3 {
	font-size: 16px;
	text-align: center;
}

footer {
	bottom: 0;
	font-size: 16px;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}

header, footer {
	background-color: #f5abb9;
	height: 60px;
	text-align: center;
	position: fixed;
	width: 100%;
}

header {
	top: 0;
}

main {
	max-width: 800px;
	margin: 60px auto;
	padding: 20px;
}

.form-group, .form-submit {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin: 10px 0;
}

.form-group select {
	width: 50%;
	padding: 10px;
}

@media screen and (max-width: 600px) {
	.form-group {
		flex-direction: column;
	}
	.form-group select {
		width: 100%;
	}
}

.form-group-y {
	flex-direction: column;
}

.form-group textarea {
	width: 100%;
	resize: vertical;
	height: 60px;
}

.form-submit {
	justify-content: center;
}

.form-submit button {
	text-align: center;
	padding: 20px;
}

.form-group select, .form-submit button {
	background-color: #D6F3FD;
	border: 1px solid #5BCFFA;
	border-radius: 10px;
}

.hidden {
	display: none !important;
}

.open-email {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 80px 0;
	font-weight: bold;
}

.open-email a {
	text-align: center;
	text-decoration: none;
	background-color: #D6F3FD;
	border: 3px solid #5BCFFA;
	border-radius: 10px;
	color: black;
	padding: 20px;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

#doesntWorkA {
	text-align: center;
	display: block;
	font-style: oblique;
	font-weight: normal;
	color: #222;
}

.copy-card {
	background-color: #D6F3FD;
	border-radius: 20px;
	padding: 10px;
	margin: 15px 0;
}

.copy-card button {
	float: right;
	margin-top: 10px;
	background-color: #FCEAED;
	border: solid 1px #F7C0CA;
	border-radius: 5px;
	padding: 8px;
}


.copy-card h3 {
	text-align: left;
}

.disclaimers {
	text-align: center;
	color: #666;
	margin-top: 50px;
}


.disclaimers p {
	border-bottom: 2px dashed  #999;
	padding-bottom: 10px;
}
