*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--val-bg);
  color: var(--val-white);
  font-family: var(--font-val);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.8s ease;
}

body.no-scroll {
  overflow: hidden;
}

body.timeline-active {
  background-color: var(--tl-bg);
}

img, video {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ol, ul {
  list-style: none;
}

[hidden] {
  display: none !important;
}
