.site-quote {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 15rem 2rem;
}

.site-quote-title {
  max-width: 1200px;
  font-size: 44px;
  margin-bottom: 0.5rem;
}

.site-quote-buttons {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}

button{
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: #0f0f0f;
  padding: 0 1rem 0 5px;
  min-width: 140px;
}

@media only screen and (max-width:1024px) {
  .site-quote .quote-text{
    text-align: center;
  }
}


@media only screen and (max-width:768px) {
  .site-quote-buttons{
    flex-wrap: wrap;
    justify-content: center;
  }
}