/* body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
} */

.outer-box-frame {
  border: 0.2rem solid black;
  margin: 5rem auto ; /*the auto for the left/right keeps the page centered*/
  padding: 5rem;
  max-width: 50rem;
}
.outer-box-frame-ol {
  margin: 1rem auto ; /*the auto for the left/right keeps the page centered*/
  padding: 1rem;
  max-width: 50rem;
}
html {
  text-align: center;
}
a {
  color: #337ab7;
}
p {
  margin-top: 1rem;
}
a:hover {
  color:#23527c;
}
a:visited {
  color: #8d75a3;
}

body {
    line-height: 1.5;
    font-family: sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color:black;
    margin:2em;
    /* background-image:url(https://picsum.photos/id/1056/900/550); */
    background-size: cover;
    background-attachment:fixed;
}

h1 {
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    font-size: 220%;
    font-weight: bold;
}

h2 {
    font-weight: bold;
    color: #005A9C;
    font-size: 140%;
    text-transform: uppercase;
}

#controls {
text-align: center;
} 

button {
  background-color:blue;
  border: none;
  color: white;
  padding: 15px 20px;
  font-size: 16px;
  cursor: pointer;
}

button:hover, button:focus {
outline: none;
background: blue;
}

button::-moz-focus-inner {
border: 0;
}

button:active {
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
line-height: 3rem;
}

button:disabled {
pointer-events: none;
background: lightgray;
}
button:first-child {
margin-left: 0;
}

audio {
display: block;
width: 100%;
margin-top: 0.2rem;
}

li {
list-style: none;
margin-bottom: 1rem;
}

#formats {
margin-top: 0.5rem;
font-size: 80%;
}

#recordingsList{
    max-width: 28em;
}

.content {
    max-width: 500px;
    margin: auto;
}

.container {
  width: 100%;
}
.progressbar {
  counter-reset: step;
}

.progressbar li {
  position: relative;
  list-style: none;
  float: left;
  width: 33.33%;
  text-align: center;
}

/* Circles */
.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  height: 40px;
  border: 1px solid #2979FF;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color:whitesmoke;
   
  /* Center # in circle */
  line-height: 39px;
}

.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: whitesmoke ;
  top: 20px; /*half of height Parent (li) */
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active:before {
  background: #00E676;
  content: "✔";  
}

.progressbar li.active + li:after {
  background: #00E676;
}
input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}