:root {
  --color1: #000000;
  --color2: #57252d;
  --color3: #db566c;
  --color4: #96293d;
  --color5: #FFFFFF;
}

body {
  background-color: black;
  color: white;
  font-family: 'Consolas', monospace;
  font-size: 25px;
}

a {
  color: var(--color3);
  text-decoration: none;
}

a:visited {
  color: var(--color3);
}

a:focus {
  color: var(--color5);
  text-decoration: underline;
}

a:hover {
  color: #FFF;
}

a:active {
  color: var(--color2);
}

.fullcenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenBorder {
  width:90vw;
  height: 97vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roseMask {
  width: 300px;
  object-fit: cover;
  background-image: url(img/scary.gif);
  background-size: contain;
  border: 2px solid transparent;
  border-image: url(img/scary.gif);
}

.randomImage {
  height: 300px;
  object-fit: cover;
  background-image: url(img/scary.gif);
  border: 2px solid transparent;
  border-image: url(img/scary.gif);
  max-width: 300px;
}

.icon {
  height: 25px;
  width: 25px;
}

.emote {
  height: 30px;
  width: 30px;
}






















.debug {
  border: 2px solid red;
}

