@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 35px;
  background-color: #000;
  color: #FFF;
}

p.msg {
  text-align: center;
  color: white;
  font-size: 16px;
}
p.msg::before {
  content: "🗨️ ";
}

#textcontent {
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #433d59;
}
#textcontent p.msg {
  text-align: left;
}

p.none {
  text-align: center;
  font-size: 20px;
}
p.none::before {
  content: "😞 ";
}

p.nfo {
  font-size: 16px;
  margin: 0;
  color: #999;
}
p.nfo::before {
  content: "ℹ️ ";
}

a {
  color: #c07cc6;
}

.extlink {
  font-size: 16px;
  background-color: #924399;
  color: #FFF;
  line-height: 250%;
  padding: 5px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.extlink:hover {
  background-color: #af59b6;
}

i.extlink {
  display: inline-block;
  font-size: inherit;
  font-variant: normal;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.25em;
  background-image: url("../img/extlink-light.svg");
  background-size: contain;
}
i.extlink.light {
  background-image: url("../img/extlink-light.svg");
}
i.extlink.dark {
  background-image: url("../img/extlink-dark.svg");
}/*# sourceMappingURL=base.css.map */