body {
  margin: 0;
  font-family: sans-serif;
}

#horizontal-scroll {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #222;
}

#sliderWrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background: rgba(0,0,0,0.5);
  padding: 2em;
  color: white;
  text-align: center;
  border-radius: 10px;
}

.overlay h2 {
  margin: 0 0 1em;
  font-size: 2em;
}

.overlay p {
  font-size: 1em;
  margin-bottom: 1em;
}

.buttons a {
  display: inline-block;
  background: #08f;
  color: white;
  padding: 0.5em 1em;
  margin: 0 0.5em;
  text-decoration: none;
  border-radius: 5px;
}

body.lock-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
