main {
  margin: 2rem 0;
}

#reviews {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

#reviews > div {
  max-width: 420px;
}

.reviews-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1a73e8;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.reviews-button:hover,
.reviews-button:focus-visible {
  background: #0f5fc6;
}

#reviews iframe {
  width: 600px;
  max-width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 900px) {
  #reviews > div {
    text-align: center;
    width: 100%;
    max-width: none;
  }

  #reviews {
    flex-direction: column;
  }

  #reviews iframe {
    width: 100%;
    height: 320px;
  }
}
