@font-face {
    font-family:"Gotham-Book-Regular";
    src: url("/static/fonts/GothamBookRegular.otf") format("opentype");
}

body {
    display: flex;
    justify-content: center;
    margin: 0;
}

.flexbox-container-full-player {
    width: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
    font-family: Gotham-Book-Regular;
    font-size: 4.5vh;
}

#arpeggi-logo {
  width: 11vh;
  height: 11vh;
  margin-left: 10%;
  margin-right: 4%;
}

#arpeggi-logo:hover {
  cursor: pointer;
}

.flexbox-container-play-and-stop {
  display: flex;
  margin-right: 0%;
  margin-left: 2%;
}

.flexbox-item-player-play {
  display: flex;
  align-items: center;
  height: 100%;
  /* border: 1px solid red;
  margin-left: 20%; */
}

.flexbox-item-player-stop {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left:-5%;
}

.buttons {
  width: 12h;
  height: 12vh;
  /* margin-right: %; */
}

/* @media screen and (max-width: 600px) {
  .buttons {
      width: 5vw;
      height: 5vw;
  }
} */

.buttons:hover {
  cursor: pointer;
}

.flexbox-container-title-and-artist-containers {
  display: flex;
  height: 75%;
  width :75%;
  flex-direction: column;
  /* border: 1px solid red; */
  justify-content: space-between;
}

.flexbox-container-title-and-artist {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* align-itemsbaseline; */
  height:50%;
  /* border:1px solid blue; */
}

.flexbox-item-track-title-label{
  font-size: 2.5vh;
  width:0%;
}

.flexbox-item-track-title{
  font-size: 4.5vh;
  white-space: nowrap;
  overflow: hidden;
  /* width: 35%;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.flexbox-item-track-artist-label {
  color:lightgray;
  font-size: 2.5vh;
  width:0%;
  /* height:100%; */
  /* border: 1px solid green; */
  /* justify-content: baseline; */
}

.flexbox-item-track-artist {
  color:lightgray;
  font-size: 3.8vh;
  text-align: left;
  white-space: nowrap;
  overflow:hidden;
  /* border: 1px solid red; */

  /* text-align: right;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis; */
}


@media screen and (max-width: 600px) {
    .flexbox-container-full-player {
        width: 100vw;
        height: 100vw;
        font-size: 5vw;
    }
    body {
        height: 100vh;
        align-items: center;
    }
}

.flexbox-container-instruments {
    /* border: black solid 3px;
    border-top: black solid 2px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 90%;
    width: 100%;
}

.flexbox-item-instrument{
    height: 28%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#drums-flexbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flexbox-container-instrument-title{
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 11.1%;
  z-index: 3;
}

.flexbox-item-table {
    flex: 1;
}

.flexbox-container-drums {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flexbox-item-drums {
    flex: 1;
}

#bass-header {
  background-color: var(--color2);
  height: 11%;
}

#melody-header {
  background-color: var(--color3dark);
  height: 11%;
}

#harmony-header {
  background-color: var(--color4);
  height: 11%;
}

#drums-header {
  background-color: var(--color5);
  height: 20%;
}

.flexbox-container-track-info {
    height: 15%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    /* border-left: black solid 3px;
    border-right: black solid 3px;
    border-top: black solid 3px; */
    background-color: #50656e;
    color: white;
    white-space: nowrap;
}
