/* default styles (moblie) */
/** {border: 2px solid red;}*/

body {
  margin: 0 auto;
  background-color: #A0ADBD;

}

h1 {
	font-size: 1.8em;
	margin: 4% 0 2% 0;
	color: #F2E8DF;
	text-align: center;
 	font-family: "IBM Plex Serif", serif;
}

#video-wrapper {
	text-align: center;
    width: 80%;
    margin: auto;
}

video {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

p {
	display: inline-block;
  text-align: center;
  color: #242c5a;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

span {
	font-style: italic;
}

input{
	cursor: pointer;
}

#quiz-form {
	width: 80%;
	margin:auto;
}

h2 {
	font-size: 1.4em;
	color: #F2E8DF;
	text-align: center;
	font-family: "IBM Plex Serif", serif;
	margin: 0;
}

h3 { /*questions*/
	font-family: "Nunito", sans-serif;
	font-size: 1.1em;
	font-weight: 700;
	color: #55332d;
}

label {
	font-family: "Nunito", sans-serif;
	font-size: 1em;
	font-weight: 600;
	color: #242c5a;
}

input[type="submit"], #start-btn {
  background-color: #55332d; /* brown */
  color: #F2E8DF; /* off white */
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  font-family: "Nunito", sans-serif;
  margin: 3% 40%;
}

input[type="submit"]:hover, #start-btn {
  background-color: #253259; /* change color on hover */
}

#result {
  margin: 5% 0%;
  padding: 4px 40px;
  border-radius: 8px;
  background: #F2E8DF;
  font-weight: bold;
  font-size: 1em;
  color: #514632;
  font-family: "Nunito", sans-serif;
  display: inline;
}

/*MEDIA QUERIES*/

/* tablet styles */
@media only screen and (min-width: 600px) and (max-width: 750px) {

h1 {
	font-size: 2.5em;
}

p {
	font-size: 1.3em;
}

h2 {
	font-size: 2em;
}

h3 { /*questions*/
	font-size: 1.4em;
}

label { 
	font-size: 1.25em;
}

input[type="submit"], #start-btn {
	padding: 12px 18px;
	font-size: 1.2em;
}

#result {
	padding: 7px 45px;
	font-size: 1.2em;
}

}/* end of tablet styles */


/* desktop styles */
@media only screen and (min-width: 751px) {
h1 {
	font-size: 3.5em;
}

p {
	font-size: 1.4em;
}

h2 {
	font-size: 2.5em;
}

h3 { /*questions*/
	font-size: 1.7em;
}

label { 
	font-size: 1.5em;
}

input[type="submit"], #start-btn {
	padding: 15px 20px;
	font-size: 1.5em;
}

#result {
	padding: 9px 48px;
	font-size: 1.5em;
}

} /* end of desktop styles */