html {
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}

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

.content {
  position: relative;
  scroll-snap-type: y mandatory;
  height: 100vh;
  width: 100%;
  overflow: auto;
}

@keyframes load1 {
 0%,100% {background-size:20% 100%}
 33%,66% {background-size:20% 20%}
}

@keyframes load2 {
 0%,33%   {background-position: 0    0,50% 50%,100% 100%}
 66%,100% {background-position: 100% 0,50% 50%,0    100%}
}

@keyframes animate-in {
  from { opacity: 0; }
  to {  opacity: 1; }
}

.loader {
  width: 45px;
  aspect-ratio: 1;
  --c:no-repeat linear-gradient(#2a93c6 0 0);
  background: var(--c), var(--c), var(--c);
  animation: load1 1s infinite, load2 1s infinite;
  transition: opacity 400ms ease;
}

.init-story {
  padding: 10px;
  border: 1px solid #2a93c6;
  border-radius: 3px;
  margin: 10px;
  cursor: pointer;
  color: #fff;
  background: #2a93c6;
  position: relative;
  transition: all .45s ease-in-out;
}

.init-story:hover {
  background: #207aa6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.init-story.clicked {
  color: #2a93c6;
  background: #fff;
}

.init-story:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  transform: rotate(-30deg) translateX(-.2rem);
  transform-origin: -35% 90%;
  border-bottom: #c5294d;
}
	
.section {
  position: relative;
  height: 100vh;
  height: 100svh;
  padding: 20px;
  box-sizing: border-box;
  scroll-snap-align: start;
  overflow: hidden;
}

.section {
  display: flex; justify-content: center; align-items: center;
}

.section-loader {
  animation: animate-in 300ms linear;
}

.slide {
  height: auto;
  width: 120vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width:650px) {
  .slide {
    width: auto;
    height: calc(100vh - 40px);
  }

  .section {
    height: 100vh;
  }
}