* {
  user-select: none;
  -ms-user-select: none;
  outline: 0;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  margin: 0;
}

h1 {
  position: absolute;
  width: 100vw;
  color: black;
  font-size: 60px;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  text-align: center;
}

.screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 30vw;
  display: flex;
  overflow: hidden;
}

.slide-container {
  position: absolute;
  left: -50vw;
  width: 150vw;
  height: 100%;
  display: flex;
}

.order-container {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 10%;
  height: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  border-radius: 8px;
}

.order {
  font-size: 1.5vw;
  font-weight: 900;
  color: white;
  margin-top: 2px;
}

.slide {
  width: 50vw;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

@media (max-width: 800px) {
  h1 {
    position: absolute;
    width: 100vw;
    color: black;
    font-size: 10vw;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    text-align: center;
  }

  .screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 50vw;
    display: flex;
  }

  .slide-container {
    position: absolute;
    width: 300vw;
    left: -100vw;
    height: 50vw;
    display: flex;
  }

  .order-container {
    position: absolute;
    right: 2%;
    bottom: 2%;
    width: 10%;
    height: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 8px;
  }

  .order {
    font-size: 2.5vw;
    font-weight: 900;
    color: white;
    margin-top: 2px;
  }

  .slide {
    width: 100vw;
    height: 100%;
  }
}
