body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
background: rgb(107,107,158);
background: -moz-radial-gradient(circle, rgba(107,107,158,1) 0%, rgba(13,37,41,1) 100%);
background: -webkit-radial-gradient(circle, rgba(107,107,158,1) 0%, rgba(13,37,41,1) 100%);
background: radial-gradient(circle, rgba(107,107,158,1) 0%, rgba(13,37,41,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6b6b9e",endColorstr="#0d2529",GradientType=1);
-webkit-font-smoothing: antialiased;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ and Edge */
  user-select: none; /* Standard syntax */
  cursor: default;
}

html, body {
	height: 100%;
}

div#main-content {
	color: #281c52;
	width: 500px;
	margin: auto;
	border: 1px solid white;
	padding: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    backface-visibility: hidden;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); /* IE 9 */
    -webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */	
    background: rgba(255,255,255,0.5);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

div.downloadable-wrapper {
	margin: auto;
}

div.downloadable-container {
	color: #281c52;
	min-height: 350px;
	width: 450px;
	margin: 10px auto;
	vertical-align: middle;
	border: 1px solid white;
	padding: 25px;
    backface-visibility: hidden;
    background: rgba(255,255,255,0.5);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

div.downloadable-container h1 {
	font-size: 35px;
	color: #c6f0ff;
}

h1 {
	font-size: 50px;
	padding: 0;
	margin: 0;
}

h2 {
	margin: 0;
}

h1, h2 {
	text-align: center;
	color: #f5f0ff;
}

div#links {
	width: 90%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

div.strong {
	font-weight: bold;
}

div#links a {
	padding: 20px;
	border-radius: 4px;
	width: 40%;
	border: 1px solid #cdcdf6;
	margin: auto auto 10px auto;
	background: rgba(224, 228, 255, 0.84);
	text-align: center;
	cursor: pointer;
	color: #363636;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 36px;
	text-decoration: none;
}

div#links a div,
div#links.no-inline a {
	display: block;
}

sub {
	text-align: center;
}

div#links a:hover {
	background: rgba(220, 242, 255, 0.84);
	color: #6d6d6d;
}

div#links a:active {
	box-shadow: inset 1px 1px 5px #a0e3ff;
}

div#errors {
	font-weight: bold;
	text-align: center;
  	font-size: 20px;
	padding: 10px;
 	color: darkred;
}

div#errors div {
  padding: 7px;
}

form div#name-info {
	display: none;
}
form div label {
	display: block;
	font-weight: bold;
	font-size: 22px;
}

form div input,
form div textarea {
	font-size: 22px;
	border: 1px solid white;
	background: white;
	padding: 15px;
	width: 90%;
	margin: 11px;
}

form div button {
  font-size: 22px;
  border: 1px solid #cdcdf6;
  background: rgba(224, 228, 255, 0.84);
  padding: 15px;
  width: 90%;
  margin: 10px;
  color: black;
  text-align: center;
}

form div textarea {
	height: 150px;
}

form div button:hover {
	background:#eeeeee;
	cursor: pointer;
}

form div button:active {
	color: black;
	box-shadow: 0px 0px 4px black;
}

@media only screen and (max-width: 800px),
(max-height: 700px) {
	html, body {
		overflow-y: auto;
		height: auto;
	}
  div#main-content {
    width: 100%;
    box-sizing: border-box;
    top: 0;
    left: 0;
    transform: none;
  }
  div.downloadable-container,
  div.downloadable-wrapper {
	  width: 100%;
	  box-sizing: border-box;
  }
}