/* Set background color */
body {
  background-color: #dcdcdc;
}

/* Set font styles */
h1 {
  font-size: 36px;
  font-weight: 700;
  color: #212121;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 24px;
  font-weight: 500;
  color: #424242;
  text-align: center;
}

/* Style the quote container */
.quote-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

/* Style the new quote button */
#new-quote {
  background-color: #263238;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  padding: 12px 32px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#new-quote:hover {
  background-color: #566a72;
}
