body {
  height: 100vh;
  background-image: url(../img/bg.jpg);
  background-size: 100% 100%;
  background-attachment: fixed;
}

header {
  z-index: 300;
  position: relative;
}

.main-wrapper {
  max-width: 800px;
  width: 80%;
}

.sound {
  position: fixed;
  top: 0;
  z-index: 300;
}

.sound img {
  width: 2rem;
}

.img-header {
  width: 500px;
  max-width: 80%;
}

.box-content {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

.box-up, .box-middle, .box-left, .box-right {
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  background-size: 100% 100%;
  opacity: 1;
}

.box-up {
  background-image: url('../img/box-up.png');
  /* top: -30px; */
  z-index: 101
}

.box-middle {
  /* top: 10px; */
  opacity: 1;
  background-image: url('../img/box-middle.png');
  z-index: 100;
}

.box-left {
  /* left: -30px; */
  background-image: url('../img/box-left.png');
  z-index: 102;
}

.box-right {
  /* right: -30px; */
  background-image: url('../img/box-right.png');
  z-index: 102;
}

.box-image {
  top: 40%;
  opacity: 0;
  position: absolute;
  width: 100%;
  margin: auto;
  text-align: center;
  z-index: 100;
}

.box-image img{
  width: 40%;
  margin: auto;
}

.bg-modal-header {
  background-color: #7e050a;
}

.bg-modal-body {
  background-color: #f43229;
}

.bg-red-500 {
  background-color: #f56565;
}

.bg-orange-500 {
  background-color: #ed8936;
}

.text-orange-500 {
  color: #ed8936;
}

.second-screen {
  position: fixed;
  background-color: rgba(255, 255, 255, .8);
  height: 100vh;
  width: 100vw;
  top: 0;
  z-index: 200;
}

@media (max-width: 791px) {
  .img-header {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  body {
    background-image: url(../img/bg-mobile.jpg);
    background-size: 100% 100%;
  }

  .main-wrapper {
    max-width: 800px;
    width: 90%;
  }

  .box-up {
    top: 0;
  }
  
  .box-middle {
    top:0;
  }
  
  .box-left {
    left: 0;
  }
  
  .box-right {
    left: 0;
  }
  
}