/* 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: 1px;
	padding-bottom: 6px;
	padding-left: 16px;
	padding-right: 16px;
}

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

button:focus {
	outline: 0;
}





/* STYLING */

body {
  background-color: pink;
	min-height: 776px;
	height: 100vh;
	overflow: auto;

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

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

header a {
	margin-right: 20px;

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

	cursor: pointer;
}

header a:focus {
  outline: 0;
}

.description {
  margin: 20px;
  margin-left: 100px;
  margin-right: 100px;

  font-size: 20px;
}

main {
	margin-top: 20px;
  min-height: 630px;

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

.play {
	margin-top: 20px;
}

section {
  margin: 100px;

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

.top-instruments {
  margin-top: 0px;
  margin-bottom: 0px;
}

.bottom-instruments {
	margin-top: 30px;
}

.instrument-header {
	margin-bottom: 10px;

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

.instrument-title {
  padding: 15px;

	display: inline-block;

  text-align: center;
}

.stop {
	height: 43px;
}

.instrument {
  margin-left: 100px;
  margin-right: 100px;

  border-radius: 20px;
  height: 300px;
  width: 300px;

  display: flex;
  flex-wrap: wrap;
}

#drums {
  height: 100px;
  width: 526px;

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

#vox {
  height: 100px;
  width: 380px;

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

#synth {
  padding-top: 6px;
  padding-bottom: 6px;

  height: 180px;
  width: 450px;

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

#chords {
  height: 280px;
  width: 300px;
  padding-left: 15px;
  padding-right: 15px;

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

.yellow {
  background-color: lightyellow;
}

.green {
  background-color: #b3ffe6;
}

.blue {
  background-color: lightblue;
}

.purple {
  background-color: #c599ff;
}

.key-row {
  display: flex;
  margin: 10px;
  width: 100%
}

.row-1 {
  display: flex;
  justify-content: flex-end;
}

.row-2 {
  display: flex;
  justify-content: center;
}

.row-3 {
  display: flex;
  justify-content: flex-start;
}

.key {
  background-color: white;
  border-radius: 10px;
  margin: 5px;
  height: 60px;
  width: 60px;

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

  color: grey;
  font-size: 20px;
}

.opaque-key {
	background-color: lightgrey;
	opacity: 0.5;
}

footer {
  padding-bottom: 20px;

  position: fixed;
  bottom: 0;
  width: 100vw;

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

footer a {
	text-decoration: none;
	color: white;
	margin-left: 10px;
	margin-right: 10px;
}

.hidden {
	display: none;
}
