/* Базовая сброска и стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #a60d08; /* красный фон */
  font-family: Arial, sans-serif;
  color: white;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* Основной контент по центру */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
}

.logo {
  max-width: 60vw;
  max-height: 30vh;
  height: auto;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 480px) {
  .buttons {
    flex-direction: row;
  }
}

.button-img {
  width: 160px;
  height: auto;
  transition: transform 0.2s ease;
}

.button-img:hover {
  transform: scale(1.05);
}

/* Футер */
.footer-text {
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  color: white;
}
