* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
}




/* ===================================== SCRUBBER/PLAYER ========================================= *
/* LOG DISPLAY */
#display {
	margin-left: 5px;
	margin-top: 25px;
}
pre {
	font-size: 14px;
	line-height: 22px;
  color: rgba(0 0 0 / .33);
}

/* CUSTOM AUDIO PLAYER UI */
#controls {
   width: 100px;
   float: left;
}
#progress {
   margin-left: 10px;
   margin-right: 10px;
   border: 1px solid hsla(190 100% 50% / 1);
   cursor: pointer;
}
#bar {
	height: 100px;
	background-color: hsla(190 100% 50% / 1);
}




/* ===================================== RECORDER ========================================= */
.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.volumedisplay {
	margin-top: 10px;
	margin-bottom: 10px;
	/*border: 1px solid hsla(60 100% 0% / 0.1);*/
  width: 100%;
  display: block;
}
.volumeamplitude {
  height: 50px;
	background-color: hsla(60 100% 50% / 1);
}





#buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
button {
  width: calc(25% - 0.25rem);
  height: 100px;
  font-size: 1rem;
  text-align: center;
  color: white;
  border: none;
  transition: all 0.2s;
  padding: 0.5rem;
}
button:active {
  transform: translateY(2px);	 /*"DOWN"-STATE*/
}

.recordbtn {
  background: rgba(255, 0, 0, 0.5);
}
.stopbtn {
  background: rgba(100, 100, 100, 0.5);
}
.playbtn {
  background: rgba(0, 255, 0, 0.5);
}
.pausebtn {
  background: rgba(100, 100, 100, 0.5);
}

a {
	text-decoration: none;
  color: rgba(0 0 0 / .33);
}
a:hover {
 color: rgba(0 0 200 / 1);
}



