body {
  margin: 0;
  background-color: aqua;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  min-height: 100vh;
  flex-direction: column;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.quote-quote-author {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 600;
  text-align: right;
  display: block;
  font-style: italic;
}

h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

#Quotes\ API {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.quote {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.quote-author {
  font-size: 0.9rem;
  color: #7f8c8d;
  font-weight: 600;
  text-align: right;
  font-style: italic;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
