/* 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." */
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative');

body {
  background-image: url('https://thenovaverse.neocities.org/FullSpace.png');
  background-size: cover;
  color: black;
}

h1 {
    font-family: "Cinzel Decorative", cursive;
    text-align: center;
    font-size: 50px;
    letter-spacing: 2px;
    color: rgb(255, 98, 0);
    background-color: rgba(0, 0, 0, 0);
    text-shadow: rgb(0, 0, 0) 4px 5px 5px;
}

/* Style for your Paragraphs */
p {
    font-family: "Cinzel Decorative", cursive;
    text-align: center;
    font-size: 24px;
    letter-spacing: 2px;
    color: rgb(0, 0, 0);
    background-color: rgb(84, 84, 84);
    

}

<body>

<div class="w3-container">
  <h1>Using w3-margin</h1>

  <div class="w3-border">
    <div class="w3-container w3-margin w3-green">
      <p>The w3-margin class adds 16px margin to all sides of an element.</p>
    </div>
  </div>
</div>

</body>