/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url('/images/noisetile.png');
  background-repeat: repeat;
  background-color: black;
  margin: 0;
  color: #fff3e7;
  font-family: 'CALADEA', sans-serif;
  font-size: 17px;
}


.wallpaper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 56.25vw;
  background-image: url('/images/dontrunawayfromthisdyingbg.png');
  background-repeat: no-repeat;
  background-size: 90vw 56.25vw; 
  z-index: -1;
}


/* hawt container stylez */
.container {
  width: 620px;
  height: 768px;
  border: 1px solid #d82e76;
  background-color: #000000;
  border-radius: 10px;
  overflow: auto;
  padding: 10px;
  position: absolute;
  top: 344px;
  left: calc(50% + 164px);
  margin: 0;
}


/* glow effect for text */
.glow {
  text-shadow: 0 0 7px #1548ff,
  0 0 2px #2890ff;
}