html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
  color: #333;
  background-color: #ABE0E8;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: none;
  background-color: #ececec;
  border-radius: 2px;
  margin: 0;
}

input:disabled {
	color: #ccc;
}

input[type="range"] {
	height: 0;
}

button {
	background-color: #f4f4f4;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.privacy-policy, .terms-of-service {
  padding: 0 10px;
  max-width: 1000px;
  margin: 60px auto 0 auto;
}

.privacy-policy h2, .credits-page h2, .terms-of-service h2 {
  margin-bottom: 20px;
}

.terms-of-service h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

.terms-of-service h2 {
  margin-top: 40px;
  font-size: 16px;
}

.privacy-policy p, .terms-of-service p {
  margin-bottom: 20px;
}

.privacy-policy .credit .terms-of-service {
  font-size: 10px;
}

@media screen and (min-width: 600px) {
  .privacy-policy {
    margin: 40px auto 140px auto;
  }
}