body {
  font: sans-serif;
  background: linear-gradient(135deg, #0b2645 0%, #1e3a5f 100%);
  min-height: 100vh;
  overflow-x: hidden;
  display: block;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Font1';
  src: url('/font/DS-DIGIB.TTF');
}

.handle {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 350px;
  border-radius: 15px;
  left: 2px;
  top: 250px;
  bottom: 15px;
  padding: 15px;
  gap: 10px;
  align-items: center;
  height: 300px;
  background: linear-gradient(135deg, #0b2645 0%, #1e3a5f 100%);
  border: 2px solid #2a4a6c;

}

.display {
  background: lime;
  border: 11px solid #333;
  border-radius: 8px;
  width: 100%;
  padding: 7px 17px;
  font-family: Space Mono, monospace;
  height: 115px;
  overflow-y: hidden;
  color: #000;
  line-height: 1.45;
  box-shadow: inset 0px 0px 0px 2px black, 0px 0px 0px 2px black;
  margin-bottom: 10px;
}

.main {
  width: 337px;
  height: 580px;
  top: 33px;
  position: relative;
  right: -332px;

}

.box {
  width: 337px;
  height: 116px;
  position: absolute;
  background: #7E7C7C;
  border: 5px black solid;
}

.box1 {
  top: 0px;
  left: 0px;
}

.box2 {
  top: 116px;
  left: 0px;
}

.box3 {
  top: 232px;
  left: 0px;
}

.box4 {
  top: 348px;
  left: 0px;
}

.box5 {
  top: 464px;
  left: 0px;
}

.vertical-divider {
  width: 128px;
  height: 580px;
  left: 0px;
  top: 0px;
  position: absolute;
  background: #7E7C7C;
  border: 5px black solid;
}

.lift-container {
  position: absolute;
  left: 361px;
  height: 100px;
  width: 70px;
  background-color: black;
  position: relative;
  z-index: 3;
  overflow: hidden;
  top: -75px;

}

.left-door {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  background-color: #94A3B8;
  border: 2px solid #000000;
  z-index: 1;

}

.right-door {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 50%;
  background-color: #94A3B8;
  border: 2px solid #000000;
  z-index: 1;
}

.floor {
  display: flex;
  gap: 13px;
}

button.btn-floor {
  border-radius: 50%;
  font-family: 'Font1';
  width: 50px;
  height: 50px;
  border: 2px solid rgb(0, 0, 0);
  box-shadow: inset 0px 0px 2px 1px #3c3c3c, inset 0px -3px 4px rgba(0, 0, 0, 0.3), inset 0px 3px 4px rgba(255, 255, 255, 0.6), 0px -2px 3px rgba(0, 0, 0, 0.6), 0px 1px 2px rgba(255, 255, 255, 0.7), 0px 0px 1px 1px black, 0px 0px 0px 5px gray, 0px 0px 1px 6px black;
  cursor: pointer;
  left: 5%;
  bottom: 300px;
  font-size: 30px;
  color: #02020A;
  outline: none;


  &:hover {
    border-color: rgb(255, 4, 0);
  }

  &:active,
  &.active {
    background: rgb(255, 0, 0);
    color: lighten(rgb(255, 0, 0), 40%);
    border-color: rgb(251, 69, 37);
  }
}

.all-btn {
  display: flex;
}

.main div {
  display: flex;
  justify-content: end;
  align-items: center;
}

.main div a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 30px;
  border: 5px solid rgb(63, 61, 59);
  margin-right: 24%;
  padding: 10px;
}

.all-btn {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.btn-1 {
  display: inline-block;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  padding: 12px 35px;
  border: 0;
  color: #02020A;
  background: #3348ff;
  line-height: 1.15;
  font-size: 16px;

  :hover {
    transition: all .1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #02020A;
  }

}

.btn-2 {

  display: inline-block;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  padding: 12px 24px;
  border: 0;
  color: #02020A;
  background: #FB3640;
  line-height: 1.15;
  font-size: 16px;

  :hover {
    transition: all .1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #050505;
  }

}

.call-lift-btn {

  display: inline-block;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  padding: 12px 36px;
  border: 0;
  color: #02020A;
  background: #3348FF;
  line-height: 1.15;
  font-size: 16px;

  :hover {
    transition: all .1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px #050505;
  }

}

.left-door-open {
  transform: translateX(-100%);
  transition: transform 2000ms ease-in-out;
}

.right-door-open {
  transform: translateX(100%);
  transition: transform 2000ms ease-in-out;
}

.left-door-close {
  transform: translateX(0%);
  transition: transform 2000ms ease-in-out;
}

.right-door-close {
  transform: translateX(-0%);
  transition: transform 2000ms ease-in-out;
}

.container {
  background: linear-gradient(145deg, #0b2645, #1a3a5c);
  border: 2px solid #2a4a6c;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 700px;
  padding: 20px;
  position: relative;
  height: 659px;
  display: block;
}

.screen {
  display: flex;
  justify-content: center;
}

.screen span {
  width: 100%;
  height: 60px;
  padding: 5px;
  text-align: center;
  color: red;
  background-color: rgb(0, 0, 0);
  font-size: 25px;
  font-family: Font1;
  text-wrap: nowrap;
  overflow-x: auto;


}

.stp .stp-1 {
  color: #00ff40;
  font-family: "Font1";
  background-color: rgb(0, 0, 0);
  padding: 20px;
}

.stepss {
  font-size: x-large;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
