* {
  overflow:hidden !important
}

html {
  box-shadow: 0 0 800px rgba(0,0,0,0.4) inset;
  height:100vh;
  width:100vw
}

body {
  background-color: #1e2a27;
  opacity: 1;
  background-image:  url(bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#pc {
  background-image: url(pc2.svg);
  position: absolute;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(5px 5px 20px #0000009e);
}

#terminal {
  z-index: 100;
  width: calc(50vh / 0.67);
  height: 57vh;
  overflow: hidden;
  position:absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 14vh;
}

#fallback {
  display: none;
  position:absolute;
  left: 0;
  right: 0;
  margin: auto;
  color:white;
  font-size: 2em;
  font-family: Arial;
  text-align:center;
  top:3vh;
}

@media only screen and (max-height: 330px) {
  #fallback {
    display:block;
  }

  #terminal, #pc {
    display: none;
  }
}

@media only screen and (max-width: 614px) {
  #fallback {
    display:block;
  }

  #terminal, #pc {
    display: none;
  }
}