body {
  font-family: 'Fira Sans', sans-serif;
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: white;
}

.btn-container {
  display: flex;
  gap: 30px;
}

.btn-12012025 {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.btn1-12012025 {
  background-color: #ffcc00;
}

.btn2-12012025 {
  background-color: #eeeeee;
  color: #333333;
}

.btn-icon-12012025 {
  width: 48px;
  height: 48px;
  fill: currentColor;
  transition: color 0.3s ease, fill 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.tooltip-left {
  position: absolute;
  top: -115px; /* Расположение подсказки для левой кнопки */
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  background-color: #ffffff; /* Белый цвет фона */
  color: #000000; /* Черный цвет текста */
  text-align: left; /* Выровнять текст по левому краю */
  padding: 10px; /* Равномерные отступы */
  border-radius: 5px;
  font-size: 15px; /* Увеличенный размер шрифта */
  line-height: 1.4; /* Межстрочное расстояние */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10; /* Подсказка будет поверх всех элементов */
}

.tooltip-left::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Стрелочка снизу */
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #ffffff; /* Белый цвет стрелочки */
}

.tooltip-right {
  position: absolute;
  top: -70px; /* Расположение подсказки для правой кнопки */
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  background-color: #ffffff; /* Белый цвет фона */
  color: #000000; /* Черный цвет текста */
  text-align: left; /* Выровнять текст по левому краю */
  padding: 10px; /* Равномерные отступы */
  border-radius: 5px;
  font-size: 15px; /* Увеличенный размер шрифта */
  line-height: 1.4; /* Межстрочное расстояние */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10; /* Подсказка будет поверх всех элементов */
}

.tooltip-right::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Стрелочка снизу */
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #ffffff; /* Белый цвет стрелочки */
}

.btn-12012025:hover .tooltip-left,
.btn-12012025:hover .tooltip-right {
  opacity: 0.8;
}

.btn-12012025:hover {
  background-color: transparent;
}

.btn1-12012025:hover .btn-icon-12012025 {
  fill: #ffcc00;
  transform: scale(1.5);
}

.btn2-12012025:hover .btn-icon-12012025 {
  fill: #eeeeee;
  transform: scale(1.5);
}

/* Медиазапрос для изменения масштаба только кнопок при ширине экрана 412px */
@media screen and (max-width: 412px) {
  .btn-12012025 {
    width: 102px; /* Уменьшение размера кнопки */
    height: 102px; /* Уменьшение размера кнопки */
  }

  .btn-icon-12012025 {
    width: 40px; /* Уменьшение размера иконки */
    height: 40px; /* Уменьшение размера иконки */
  }

  .tooltip-left,
  .tooltip-right {
    width: 153px; /* Уменьшение ширины подсказки */
    padding: 8px; /* Уменьшение отступов */
  }
}
