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

.hero-section {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: url('images/hero.jpg');
  background-size: auto 100%;

  background-repeat: repeat-x;
  background-position: 0% 50%;
  overflow: hidden;

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
}

.hero-section.rotate {
  animation: pano-rotate 30s linear infinite;
}

@keyframes pano-rotate {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.logo {
  width: 380px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.controls {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: sans-serif;
  z-index: 1;
}