/* style.css - Основные глобальные стили */

/* Импорт шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Сброс стилей и базовые настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Основные стили body */
body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Общие стили для ссылок */
a {
  color: #1976d2;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #64b5f6;
  text-decoration: underline;
}

/* Общие стили для кнопок */
.button {
  display: inline-block;
  padding: 12px 24px;
  background: #333;
  color: white;
  border: 1px solid #444;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Общие стили для контейнеров */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Общие заголовки */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}