.rub-button {
  background-color: var(--yellow);
  font-size: 22px;
  font-weight: 700;
  color: white;
  width: fit-content;
  padding: 15px 25px;
  box-sizing: border-box;
  border-radius: 24px;
  text-align: center;
}
@media (max-width: 600px) {
  .rub-button {
    width: 100%;
  }
}

.page-top .box {
  padding: 20px;
  padding-top: 30px;
  gap: 30px;
}


h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.page-top .box .rub-buttons {
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media (max-width: 600px) {
  .page-top .box .rub-buttons {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}