body {
    background-color: black;
    color: yellow;
    font-family: 'Amatic SC', cursive;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quote-container {
    text-align: center;
    padding: 20px;
    cursor: pointer;
  }
  
  .quote-text {
    font-size: 2rem;
  }
  
  .quote-author {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  