.fretboard {
 background-color:#f0c590;
  border-left: 5px solid #afafaf;
  border-right: 5px solid #afafaf;
  position: relative;
}
.chord-selector{
  height: 50px;
  background-color:#3d3939;
 } 
 .chord-selector:focus {
    outline-color: transparent;
    outline-style:solid;
    box-shadow: 0 0 0 4px #ed1f18;

}
.string {
  border-bottom: 1px solid #afafaf;
  height: 30px;
}

.string:first-child {
  border-top: 1px solid #afafaf;
}

.notes-wrap,
.fingers-wrap {
  height: 90px;
  width: 30px;
  position: absolute;
  top: -15px;
  left: -35px;
}

.note {
  font-size: 25px;
  line-height: 1;
  height: 30px;
}

.fingers-wrap {
  left: 0;
}

.finger-point {
  background-color: #a10000;
  color: white;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  margin-bottom: 5px;
  opacity: 0;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
}

.frets-wrap {
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.fret {
  height: 90px;
  flex: 1 1 100%;
  border-right: 2px solid #888888;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fret:last-child {
  border-right: none;
}

.fret-number {
  font-size: 1.5rem;
  transform: translateY(150%);
}
body{
  background-color: #000;

}