/* 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." */
h1{
  text-align:center;
}
/*background config*/
body {
  background-image: url('https://space-cowboys-saloon.neocities.org/spacebackground.png');
  background-repeat: repeat;
  background-size: contain;
  color: rgb(214, 202, 202);
  font-family: Ms Gothic;
}
/*title sign config*/
sign {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  img{
    width: 500px;
    height: 350px;
    position: relative;
    top: -40px;
    left:-50px;
    transform: rotate(15deg);
  }
}
/*box*/
newsbox {
  display:block;
  margin-top: 150px;
  margin-left:auto;
  margin-right:auto;
  position: relative;
  top: -350px;
  width: 50%;
  text-align: center;
  font-size: 12px; 
  color:aliceblue;
  background-color:#040119;
  border:1px solid whitesmoke;
  padding: 90px 15px 20px 15px;
  z-index:-1;
}
/*newsbox/pdfreader-config*/
news{
  overflow: hidden;
  z-index:-1;
}