.quote-container {
  display: flex;
  align-items: center;
  overflow: auto; 
  padding: 0 160px;
  background-color: rgb(39, 38, 38);
}

.quote-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 100px;
  gap: 16px;
}

.quotation {
  font-size: 36px;
  font-weight: lighter;
  margin-bottom: 10px;
  color: rgb(249, 250, 248);
}

.quote-author {
  text-align: right;
  font-size: 24px;
  font-weight: 500;
  margin: 10px 60px;
  color: rgb(249, 250, 248);
}