/*-- TYPOGRAPHY --*/
.container section {
	font-size: 3rem;
}
.block > h1 {
  font-size: clamp(2rem, 1rem + 2vw, 3rem);
  text-transform: uppercase;
  text-align: right;
}
.question > div > h1 {
	font-size: clamp(3rem, 3rem + 5vw, 12rem);
	text-align: center;
}

/*-- POSITIONS --*/
.hero-cover {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  scale:1;
  object-fit: cover; /* Внимание: аналог background-size: cover */
  object-position: center;
  z-index: -1000;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero .container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.hero .container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.hero .container section {
  display: flex;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}
.block {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  color: #f6f3eb;
}
.question {
  min-width: 40vw;
}
.anim {
  flex: 1 1 280px;
  min-width: 240px;
  padding: 1.5rem;
  box-sizing: border-box;
}

svg.svg-word {
  display: block;
  width: 100%;
  height: auto;
  fill: #f6f3eb; /* отключаем заливку */
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 72px;
  padding: 0rem;
}


