body {
  margin: 0;
  font-family: 'Lato', sans-serif;
}
h1 {
	text-align: center;
	text-transform: uppercase;
	color: #005d81;
	font-size: 40px;
	margin: 30px 0;
}
h2 {
	color: #005d81;
  font-size: 22px;
  line-height: 22px;
  margin: 0 0 10px 0;
  padding: 0;
}
h3 {
	color: #005d81;
	font-weight: 200;
	font-style: italic;
  margin: 0 0 20px 0;
  padding: 0;
}
#messages {
	width: 1000px;
	margin: 0 auto 50px auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	
}
.audio-msg {
	background: #f3f7fa;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
	padding: 20px 20px;
	position: relative;
}
#bar {
	background: #005d81;
	height: 40px;
	width: 100%;
}
nav {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
nav a {
  background: #005d81;
  color: white;
  border-radius: 10px;
  padding: 10px 25px;
  text-decoration: none;
  margin-right: 10px;
}

svg {
  display: block;
  width: 80px;
  fill: #0d5e82;
}

.player-button {
  display: inline-block;
  background: none;
  padding: 0;
  border: none;
  font-size: 1.2em;
  position: relative;
  bottom: -0.15em;
  
}
.timeline {
  -webkit-appearance: none;
  width: calc(100% - (var(--player-button-width) + var(--sound-button-width) + var(--space)));
  height: .5em;
  background-color: #e5e5e5;
  border-radius: 5px;
  background-size: 0% 100%;
  background-image: linear-gradient(#0d5e82, #0d5e82);
  background-repeat: no-repeat;
  margin-right: var(--space);
  background: #0d5e82;
  
}
.timeline::-webkit-slider-thumb {
  background-color: #0d5e82;
}
.controls {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 10px;
  margin-bottom: 20px;
}