/* 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: gray;
  color: white;
  font-family: 'Goth', sans-serif;
  font-size: 40px;
}
h1 {text-align: center;
  text-shadow: 0px 10px 10px rgba(0, 0, 0, 1.0);
  font-size: 100px;

}



p {text-align: center;}

div {text-align: center;}

ul {text-align: center;}

li {text-align: center;}

@font-face {
  font-family: 'Goth';
  src: url(/goth.ttf); /* url of the font */
}

@font-face {
  font-family: 'mainig';
  src: url(/mainig.otf); /* url of the font */
}

#poemshit{
 width: 700px;
      height: 100%;
      border: #8A0E02 15px solid;
      border-radius: 25px;
      margin: 80px auto 40px auto; 
}

.container {
  text-align: center;
}
 .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
}

.bar {
    border: 10px solid darkred;
    border-radius: 5px;
}