/* 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-color: #2f2f2f;
  color: #d7bfff;
  font-family: Century, "Times New Roman";
}

@font-face {
    font-family: "Kanzlei UNZ1";
    src: url("https://db.onlinewebfonts.com/t/f0646a5863b9c7ac9c850b5e4c7232e6.eot");
    src: url("https://db.onlinewebfonts.com/t/f0646a5863b9c7ac9c850b5e4c7232e6.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/f0646a5863b9c7ac9c850b5e4c7232e6.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/f0646a5863b9c7ac9c850b5e4c7232e6.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/f0646a5863b9c7ac9c850b5e4c7232e6.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/f0646a5863b9c7ac9c850b5e4c7232e6.svg#Kanzlei UNZ1")format("svg");
}

@font-face {
    font-family: "FancyText";
    src: url("https://db.onlinewebfonts.com/t/ffd32f811a4da661dea0deb1245f8174.eot");
    src: url("https://db.onlinewebfonts.com/t/ffd32f811a4da661dea0deb1245f8174.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/ffd32f811a4da661dea0deb1245f8174.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/ffd32f811a4da661dea0deb1245f8174.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/ffd32f811a4da661dea0deb1245f8174.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/ffd32f811a4da661dea0deb1245f8174.svg#FancyText")format("svg");
}

h1, h2, h3 {font-family: "FancyText", Century, "Times New Roman"; font-weight: normal; color:#c39fff
}

em {
  color: #dfff9f
}

strong {color:#a32737;
}

#box {
    padding: .5em;
    background-color: #2f2f2f;
    border: 4px solid #c39fff;
}
#content {
    margin: 0 1em 0.5em 1em;
}