.body {
  background-color: #000;
  background-image: url('../images/pattern.gif');
  background-position: 50%;
  background-size: 500px;
    animation: ScreenEffect 0.044s ease infinite, SimpleGlitch 1s infinite;
	    overflow: hidden;   /* To prevent the pseudo-elements from causing scroll */

}

@keyframes SimpleGlitch {
    0%, 90%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    92% {
        transform: translate(-2px, 0);
        filter: hue-rotate(15deg);
    }
    94% {
        transform: translate(5px, 0);
        filter: hue-rotate(-15deg);
    }
    96% {
        transform: translate(-2px, 0);
        filter: hue-rotate(15deg);
    }
    98% {
        transform: translate(5px, 0);
        filter: hue-rotate(-15deg);
    }
}

.lsd-container {
    position: fixed;    /* Makes it stick to the viewport */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;   /* So tabs that go outside the boundaries are hidden */
    pointer-events: none;   /* Ensures the container doesn't interfere with clicks */
    z-index: 1900;
}

.lsd-tab {
    position: absolute;
    animation: fallRotate linear infinite;
}

@keyframes fallRotate {
    to {
        transform: translateY(calc(100vh + 80px)) rotate(360deg);
    }
}

/* Remove the separate rotate keyframes. */


.lsd-tab img {
    width: 80px;
    height: 80px;
}


.cursor_wrapper {
  z-index: 3000;
  justify-content: center;
  align-items: center;
  display: flex;
  pointer-events: none;   /* Ensures the container doesn't interfere with clicks */
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cursor {
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/cursor.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 18px;
  margin-left: 10px;
}

.header {
  width: 100%;
  height: 60px;
  display: none;
  position: fixed;
}

.hero {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.image, .man {
  width: 500px;
}

.leave {
  z-index: 100;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.leave_01 {
  color: #7fff4c;
  background-color: #000;
  border: 3px solid #5a7dff;
  border-radius: 100px;
  margin: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.leave_02 {
  color: #f94cff;
  background-color: #000;
  border: 3px solid #5a7dff;
  border-radius: 100px;
  margin: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.leave_03 {
  color: #ffea4c;
  background-color: #000;
  border: 3px solid #5a7dff;
  border-radius: 100px;
  margin: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.leave_04 {
  color: #4cdeff;
  background-color: #000;
  border: 3px solid #5a7dff;
  border-radius: 100px;
  margin: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.tweet {
  z-index: -1;
  width: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 10%;
  left: 0%;
  right: 26%;
  transform: rotate(7deg);
}

.tweet_img {
  width: 400px;
}

.header_menu {
  z-index: 1000;
  width: 450px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin: 5px auto 0;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.menu_button {
  width: 130px;
  color: #fff;
  background-color: #000;
  background-image: linear-gradient(-45deg, #554de6, #fd52fd 50%, #fd9c52);
  border: 3px solid #5aff8b;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  display: flex;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.menu_button:hover {
  color: #f9ff87;
  background-color: #000;
  border-color: #f45aff;
}

.cat {
  width: 350px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.popup_section {
  z-index: 2000;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: rgba(0, 0, 0, .58);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.popup_block {
  width: 450px;
  height: auto;
  background-color: #000;
  border: 3px solid #6cffd3;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 15px;
  display: flex;
}

.popup_title {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(-45deg, #5bc0ff, #ffe96e 50%, #c935ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Exo, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
}

.popup_buttons {
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.button {
  width: 150px;
  background-color: #000;
  border: 3px solid #69ff73;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 20px;
  font-size: 18px;
  display: flex;
}

.no_02 {
  width: 150px;
  color: #ff7a7a;
  background-color: #000;
  border: 3px solid #ff698a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 20px;
  font-family: Exo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: none;
}

.yes {
  width: 150px;
  color: #68ffeb;
  background-color: #000;
  border: 3px solid #69f8ff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 20px;
  font-family: Exo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.yes:hover {
  background-color: #002b51;
}

.no {
  width: 150px;
  color: #ff7a7a;
  background-color: #000;
  border: 3px solid #ff698a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 20px;
  font-family: Exo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

@media screen and (min-width: 1920px) {
  .man {
    width: 800px;
  }

  .leave_01 {
    width: 180px;
    height: 70px;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 22px;
    display: flex;
  }

  .leave_02, .leave_03, .leave_04 {
    width: 180px;
    height: 70px;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 22px;
    display: none;
  }

  .tweet_img {
    width: 650px;
  }

  .header_menu {
    width: 700px;
    height: auto;
  }

  .menu_button {
    width: 180px;
    height: 70px;
    font-size: 22px;
    line-height: 22px;
  }

  .cat {
    width: 500px;
  }

  .popup_section {
    display: flex;
  }

  .popup_block {
    width: 650px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .popup_title {
    font-size: 45px;
    line-height: 45px;
  }

  .yes, .no {
    width: 180px;
    font-size: 22px;
  }
}

@media screen and (max-width: 991px) {
  .popup_section {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .leave {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tweet {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    top: 122px;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .tweet_img {
    width: 350px;
  }

  .header_menu {
    width: 100%;
  }

  .menu_button {
    width: 100px;
    font-size: 12px;
  }

  .cat {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .popup_section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup_block {
    width: 100%;
  }
}


