#random-quote-generator {
  text-align: center;
  color: white;
}

#random-quote-title {
  margin: 30vh 0 10vh 0;
  font-size: 5vh;
}

#random-quote-text {
  font-size: 3vh;
  width: 60vw;
  margin: 0 auto;
}

#random-quote-author {
  font-size: 2vh;
  margin: 1vh 0 10vh 0;
}

#New-Random-Quote {
  font-size: 2vh;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

#New-Random-Quote:hover {
  cursor: pointer;
  font-weight: bold;
  background: rgba(255,255,255,0.2);
}