.text-to-audio {
  }
  
#paragraph {
  height: 300px;
  color: Black;
  font-size: 20px;
  text-align: justify;
  overflow-y: auto;
}
  
#readButton {
  background-color: green;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 100px;
  border-radius: 100px;
}
  
.fa-volume-high {
  color: yellow;
  padding: 10px;
  font-size: 20px;
  border-radius: 50px;
}
  
#readButton:active {
  background-color: red;
}
  
.fa-volume-high:active {
  color: white;
  padding: 10px;
  font-size: 20px;
  border-radius: 50px;
}



@media only screen and (max-width: 600px) {
  #paragraph {
    height: 600px;
    color: blue;
    overflow-y: auto;
  }
  
  #readButton {
    background-color: green;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    top: 120px;
    border-radius: 100px;
  }
}
