/* 1. Базовий reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Основні HTML-елементи */
html,
body {
  height: 100%;
  background-color: #000900;
  color: #fff;
  line-height: 1.5;
}

/* 3. Посилання */
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* 4. Списки */
ul,
ol {
  list-style: none;
}

/* 5. Зображення */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. Форми */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
  background-color: transparent;
}

/* 7. Заголовки */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* 8. Таблиці */
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 0.5rem;
  text-align: left;
}

/* 9. Інтерактивні елементи */
[tabindex='-1']:focus {
  outline: none !important;
}
