@font-face {
  font-family: 'Hacked';
  src: url('font/Hacked-KerX.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* { 
  margin: 0; 
  padding: 0; 
}

#BGm1ng {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 100px;
}

.bottom {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  gap: 300px;
  margin-top: 4%;
}

#worldText {
  margin: 0;
  font-size: 70px;
  color: #00ff00;
  font-family: 'Hacked', sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

#character {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.6));
  height: 500px;
  width: auto;
}

#glitchVideo {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: all 300ms ease-in;
  display: block;
}

#sign {
  width: 260px;
  height: auto;
  margin-top: 24px;
  cursor: pointer;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.6));
  transition: all 300ms ease-in-out;
}

#sign:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.7));
}
