/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

.piano {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.W, .B {
  cursor: pointer;
  border-bottom-left-radius: 5%;
  border-bottom-right-radius: 5%;
  box-shadow: -2px 3px grey;
  text-align: center;
  align-content: flex-end;
  display: grid;
  text-transform: uppercase;
}

.W {
  width: 67px;
  height: 268px;
  background-color: #f9f7ec;
  border: 1px solid black;
}

.B {
  width: 40.2px;
  height: 160.8px;
  background-color: #1c110f;
  margin-left: -20px;
  margin-right: -20px;
  z-index: 10;
  color: white;
}

div.active.W {
  background-color: #ebebeb;
}

div.active.B {
  background-color: #3d3d3d;
}

.controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#volume {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: transparent;
  width: 60%;
}

#volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: navy;
  margin-top: -6px;
  cursor: pointer;
}

#volume::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background-color: gray;
  z-index: 40;
}

.metronome * {
  text-align: center;
}

.metronome {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 350px;
  background-color: powderblue;
  color: navy;
  border-radius: 5%;
  padding-bottom: 1%;
  padding-top: 1%;
  margin: 2%;
  margin-left: 4%;
}

.bpm {
  text-align: center;
  margin-top: 5px;
}

.bpm-val {
  font-size: 2rem;
  font-weight: bold;
}

.metro-label {
  font-size: 1.5rem;
}

.timeSig {
  display: flex;
  align-items: space-between;
  padding-top: 2%;
}

.metro-speed {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.decr-metro, .incr-metro {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid navy;
  text-align: center;
  cursor: pointer;
  line-height: 30px;
}

.decr-metro {
  line-height: 28px;
}

.decr-metro:hover, .incr-metro:hover {
  background-color: #ebebeb;
}

#metronome {
  -webkit-appearance: none;
  background-color: transparent;
  width: 60%;
}

#metronome::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: navy;
  margin-top: -6px;
  cursor: pointer;
}

#metronome::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background-color: gray;
  z-index: 40;
}

.startMetro {
  font-size: 1rem;
  width: 80px;
  align-self: center;
  border-radius: 80%;
  line-height: 50px;
  cursor: pointer;
  background-color: grey;
  color: white;
}

.startMetro.active {
  background-color: darkred;
}

.timeSig {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.timeSig-val {
  font-size: 1.5rem;
  padding: 0 15px;
}

.decr-timeSig, .incr-timeSig {
  border: 1px solid navy;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  cursor: pointer;
}

.decr-timeSig:hover, .incr-timeSig:hover {
  background-color: #ebebeb;
}

.additional-controls {
  margin: 2%;
  margin-right: 4%;
}

.volume-control, .sound-type {
  display: flex;
  flex-direction: column;
  background-color: powderblue;
  color: navy;
  border-radius: 5%;
  width: 200px;
  height: 60px;
  align-items: center;
  justify-content: space-evenly;
}

.vol-label, .sound-type {
  font-size: 1.5rem;
}

.sound-type {
  margin-top: 5%;
}

#sound-options {
  font-size: 1rem;
  color: navy;
}

/* RESOURCES */
.resources {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.instructions {
  font-size: 1.5rem;
  margin: 2%;
  margin-left: 4%;
  padding: 1%;
  background-color: powderblue;
  color: navy;
  border-radius: 5%;
  align-self: center;
  cursor: pointer;
}

.instructions:hover {
  background-color: #3895d3;
}

.resources button {
  background-color: transparent;
  border: none;
  text-decoration: none;
  font-size: 1.5rem;
}

button:visited {
  color: gray;
}

.links {
  margin: 4%;
}

.title {
  font-size: 3rem;
}

.instructions-popUp {
  display: none;
}

.instructions-popUp.display {
  color: navy;
  display: flex;
  position: fixed;
  z-index: 50;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url("../src/styles/piano-03.png");
}

.text {
  padding: 5%;
}

.text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.instructions-popUp .text {
  background-color: antiquewhite;
  z-index: 60;
  width: 80%;
  opacity: 80%;
  font-size: 25px;
}

.welcome {
  font-size: 40px;
}

.exit-instructions {
  width: 500px;
  height: 100px;
  border: 1px solid navy;
  justify-self: center;
  cursor: pointer;
  display: flex;
  margin: 10px auto;
}

.exit-instructions:hover {
  background-color: lightgray;
}
