body{
    font-family: system-ui;
   width:100%;
  box-sizing:border-box;
}

#grid-container{
    display: grid;
    grid-template-areas:
        "title title"
        "voices voices"
        "play text";
    grid-template-rows: 10vh 30vh 1fr;
    grid-template-columns: 30% 1fr;
    grid-gap: 20px;
    width: 100%;
    height: 100vh;
}

#title{
  grid-area: title;
  display: flex;
  justify-content: center;
  align-items: center;
}

#play{
   grid-area: play;
     display: flex;
  justify-content: center;
  align-items: center;
}

#textarea{
  grid-area:text;
    margin: 12px;
}

#textarea textarea{
  height: 90%;
  width: 90%;
  border: 0;
  background: #EBEBEB;
  margin-right:10px;
  margin-bottom:10px;
  font-size:25px;
  overflow: scroll;
}

#voiceChoices{
  grid-area:voices;
  width: 100%;
  height: 100%;
}

#start-button {
    padding: 20px;
    border: 4px solid black;
    border-radius: 8px;
    background: #007dff;
    color: white;
    font-size: 1.2em;
}

.hear-button,
.select-button{
  font-size:10px;
}

.hear-button img{
  width: 20px;
  height: 20px;
  padding: 0;
}

#voiceChoices button {
    border: none;
    padding:4px;
    margin: 6px;
    font-size: 10px;
    box-shadow: 2px 2px 5px;
}

#voiceChoices button:hover{
    color: white;
}

#voiceChoices {
    overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 2px;
}

