html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #fff;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  min-height: fit-content;
  max-height: fit-content;
  background-color: #000;
}
body::-webkit-scrollbar {
  width: 8px;
}

/* Track */
body ::-webkit-scrollbar-track {
  background: #e6e6e6;
}

/* Handle */
body ::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}

.container {
  width: 100vw;
  min-height: fit-content;
  background-image: url("../images/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-web {
  position: fixed;
  left: 50%;
  top: 82%;
  transform: translate(-50%, -50%);
}
.box-web-btn {
  display: block;
  width: 290px;
  height: 101px;
  background-image: url("../images/button.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.box-web-btn-more {
  display: block;
  width: 100px;
  height: 100px;
  top: 100px;
  left: -60px;
  background-image: url("../images/tim_hieu.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.img-mount {
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% + 20px);
  right: 3px;
  transform: translateY(-50%) scale(3.25);
}

@media (max-width: 768px) {
  body::-webkit-scrollbar {
    width: 0px;
  }
  .container {
    background-image: url("../images/background.png");
  }
  .box-web-btn-more {
    width: 90px;
    height: 90px;
    top: 90px;
    left: -30px;
  }
}
@media (max-width: 268px) {
  .box-web-btn-more {
    width: 70px;
    height: 70px;
    top: 55px;
    left: -35px;
  }
  .box-web-btn {
    width: 187px;
    height: 65px;
  }
  .box-web {
    top: 77%;
  }
}
