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

.section {
  width: 100%;
  height: 100vh;
}

.horizontal-wrapper {
  overflow: hidden;
  background-color: var(--light);
  color: var(--dark);
}

.horizontal-container {
  display: flex;
  flex-wrap: nowrap;
}

.horizontal-container .slide {
  height: 100vh;
  flex: 1 0 50%;
}

.horizontal-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}