
@font-face {
  font-family: "ZKMSerendipity-Regular";
  src:
    local("ZKMSerendipity-Regular"),
    url("/static/fonts/ZKMSerendipity-Regular.ttf");
}

/* main */

body {
	font-family: ZKMSerendipity-Regular, sans-serif;
}

main {
	width: 80%;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

h1 {
	color: rgb(246, 14, 136);
}

a {
    text-decoration: none;
    border-bottom: 1px dotted;
    color: black;
}

/* buttons */

.button {
	color: white;
	background: gray;
	padding: 0.25em;
}

.start {
	color: white;
	background: green;
}

.stop {
	color: white;
	background: red;
}

.error, .danger {
	color: red;
}

.submit-button {
	text-decoration: none;
  border: none;
	padding: 0.5em;
	font-size: 0.8em;
	color: white;
	background: #6666FF;
	cursor: pointer;
}

/* lists */

li {
	margin-bottom: 1em;
}

#question-form {
	text-align: center;
}

#question-list, #danger-list {
  display: inline-block;
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#question-list input[type="radio"] {
  width: 2em;
  height: 2em;
  vertical-align: middle;
}

#question-list label {
	margin-left: 1em;
}

/* util */

.align-right {
	text-align: right;
}

.align-center {
	text-align: center;
}

/* media sizing */

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {

	/* use full size */
	main: {
		width: 98%;
	}

}
