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

body {
  font-family: 'Lato', sans-serif;
  overflow-y: hidden;
  scrollbar-width: none;
}

a {
  color: hotpink
}

ol {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

html {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

img {
  height: 100vh;
  width: calc(100vh * 1.5);
  object-fit: cover;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

aside {
  position: fixed;
  bottom: 1em;
  right: 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  text-align: right;
}

aside > div >  a {
  background: black;
  padding: .6em;
  text-decoration: none;
  display: inline;
}