/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overflow: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	background: none;
	border: none;
	font-size: 26px;
	color: white;
	cursor: pointer;
	border: 1px solid white;
	border-radius: 10px;
	padding-top: 3px;
	padding-bottom: 6px;
	padding-left: 11px;
	padding-right: 11px;
}

button:hover {
	border: 1px solid lightgrey;
	/* color: lightgrey; */
}

button:focus {
	outline: 0;
}




























/* STYLING */

body {
  background-color: pink;
	min-height: 700px;
	height: 100vh;
	min-width: 1150px;
	width: 100vw;
	overflow: auto;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;

  font-family: sans-serif;
  color: white;
  font-size: 26px;
}

header {
  text-align: center;
  font-size: 36px;
  padding-top: 30px;
}

header p {
	margin-bottom: 10px;
}

header a {
	border: 1px solid white;
	border-radius: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 14px;
	padding-right: 14px;

	font-size: 20px;
	text-decoration: none;
	color: white;

	cursor: pointer;
}

header a:hover {
	border-color: lightgrey;
}

header a:focus {
  outline: 0;
}





main {
  height: 500px;

  display: flex;
  align-items: center;
	justify-content: center;
}





aside {
	visibility: hidden;
  width: 180px;
	margin-right: -10px;
	margin-left: -20px;

  display: flex;
  flex-direction: column;
	justify-content: space-around;
  align-items: center;
}

.slider-container {
	border: 1px solid white;
	border-radius: 10px;
	padding-bottom: 5px;
	padding-left: 9px;
	padding-right: 9px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
}

.slider-container p {
	border: none;
	padding-top: 0px;
	margin-top: 8px;
}

#bpm-slider {
}

.play-stop-button {
  margin: 25px;

  cursor: pointer;
}

.stopped {
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 25px solid white;
  width: 0px;
  height: 0px;

  background-color: transparent;

  opacity: 0.7;
}

.playing {
  margin: 26px;
  border: none;
  border-radius: 3px;
  width: 26px;
  height: 26px;

  background-color: white;

  opacity: 0.7;
}

aside p {
	margin: 10px;
	border: 1px solid white;
	border-radius: 10px;
	padding-top: 7px;
	padding-bottom: 5px;
	padding-left: 9px;
	padding-right: 9px;

	font-size: 20px;
	text-align: center;

	display: inline-block;

	cursor: pointer;
}

.demo-button {
	width: 180px;
	margin-top: 11px;
}

.random-button {
	width: 107px;
}

.clear-button {
	width: 58px;
}

aside p:hover {
	border-color: lightgrey;
}





section {
  width: 400px;
  height: auto;
	margin-left: 50px;

  display: flex;
}

.sequencer-button {
  border: 2px solid pink;
  border-radius: 3px;
  margin: 2px;
  width: 17px;
  height: 17px;

  opacity: .6;

  cursor: pointer;
}

ol {
  border-radius: 3px;
}

.highlighted {
  background-color: white;
  opacity: 1;
}

/* green #b3ffe6 */
/* purple #c599ff */

.drums {
  background-color: lightblue;
}

.vox {
  background-color: #c599ff;
}

.chords {
  background-color: #b3ffe6;
}

.synth {
  background-color: lightyellow;
}

.turned-on {
  border: 2px solid white;

  opacity: 1;
}





footer {
  padding-bottom: 20px;
  position: fixed;
  bottom: 0;
  width: 100vw;

  text-align: center;
  font-size: 20px;
}

footer a {
  margin-left: 10px;
  margin-right: 10px;

	text-decoration: none;
	color: white;
}

.footer-links {
	position: relative;
}





.instructions {
	position: fixed;
	top: 0;
	left: 0;

	width: 100vw;
	height: 100vh;

	display: flex;
	justify-content: center;
}

.modal-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.5;
}

.instruction-wrapper {
	position: absolute;
	width: 100vw;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
}

.instructions p {
	font-size: 30px;
	text-align: center;
	width: 923px;
	color: white;
	text-shadow: 0px 0px 20px black;
}

.instruction {
	padding: 60px;
}

footer.buttons {
	width: 95vw;
	display: flex;
	justify-content: center;
	padding: 20px;
}

footer.buttons p {
	width: auto;
	font-size: 35px;
	display: inline;
	cursor: pointer;
}

#back {
	position: absolute;
	left: 20px;
}

#next {
	position: absolute;
	right: 20px;
}





.mobile-warning {
	position: fixed;
	top: 0;
	left: 0;

	width: 120vw;
	height: 120vh;

	justify-content: center;
	display: none;
}

.mobile-warning p {
	position: absolute;
	padding: 50px;
	font-size: 60px;
	text-align: center;
	align-self: center;
	color: white;
	text-shadow: 0px 0px 20px black;
}
