.block-report {
  width: 200px;   /* фиксированная ширина */
  height: 150px;   /* фиксированная высота */
  display: flex;  /* чтобы выровнять ссылку внутри */
  align-items: center;
  justify-content: center;

}

.main_menu {
  display: flex;
  flex-wrap: wrap;         /* разрешаем перенос строк */
  gap: 15px 15px;               /* расстояние между кнопками */
  justify-content: center; /* выравнивание по центру */
}

a {
  text-decoration: none;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 200px;
  height: 100px;
  background-color: grey;
  padding: 20px;
}

a:hover {
  background-color: rgba(255, 183, 0, 1);
  color: black;
}

a.menu {
  text-decoration: none;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 200px;
  height: 30px;
  background-color: grey;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

a.menu:hover {
  background-color: rgba(255, 183, 0, 1);
  color: black;
}