img{
    height: 32px;
    width: 32px;
  }
  .material-icons.md-48 { font-size: 48px; }
  .material-icons.md-36 { font-size: 36px; }
  .material-icons.md-24 { font-size: 24px; }
  body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Source Sans Pro', sans-serif;
  }
  #o {
      height: .7em;
      width: .7em;
      margin-top: 10px;
  }
  #app{
    display: flex;
    max-width: 1600px;
    min-width: 400px;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  #top-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    min-height: 10vh;
  }
  #title{
    font-size: 48px;
    min-height: 10vh;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    width: 100%;
  }
  #main-section{
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #word-box {
    
    width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    min-height: 20vh;
    margin-bottom: 10vh;
  }
  #word-search {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh;
  }
  #word-search-box {
    margin-left: 5px;
    max-width: 75%;
  }

  #song-list {
    border-left: solid black 1px;
    width: 75%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #search-songs{
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #song-search {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh;
  }
  #song-search-box {
    margin-right: 10%;
  }
  #current-word {
    max-width: 100%;
    word-wrap: break-word;
    margin-right: 12%;
    font-size: 5em;
  }
  .display-song-item{
    height: 4vh;
    padding-top: .5vh;
    padding-bottom: .5vh;
    min-width: 300px;
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .search-song-item{
    height: 4vh;
    padding-top: .5vh;
    padding-bottom: .5vh;
    min-width: 300px;
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .song-info {
    display: flex;
    align-items: center;
  }
  .song-info img{
    padding-right: 5px;
    padding-left: 5px;
  }
  .song-score {
    padding-left: 10px;
  }
  button {
    border: none;
    background-color: inherit;
    opacity: 0.3;
    transition: 0.1s;
  }
  button:hover {
    opacity: 0.7;
  }
  input {
      max-width: 100%;
    font-size: 24;
  }
#tooltip {
  position: relative;
}

#tooltip .tooltiptext {
  background-color: ghostwhite;
  opacity: 1;
  text-align: left;
  width: 30vw;
  padding: 5px;
  border-radius: 5px;
  border: solid black 1px;
  visibility: hidden;
  top: 105%;
  right: 105%;
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
#tooltip:hover .tooltiptext {
  visibility: visible;
}