/* 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-image:url(Stars.jpg)

/* Body text currently changes background color to Navy Blue and all text color to white. TAGS ARE STILL CHANGEABLE WITH =STYLE. */}
body {
  font-family: "Times New Roman"
}

.Banner {
  width: calc(100 - 10px); /* The calc portion makes it adjust */
  position: sticky; /* stays on screen at all times */
  border: 10px White; /* Unsure of purpose */
  border-radius: 10px; /* roundness of banner*/
  margin: 10px; /* Banner position */
  margin-bottom: 20px;
  padding:5px;

}

.Article {
  background:#202050;
  width: calc(25% - 10px); /* The calc portion makes it adjust */
  position: sticky; /* stays on screen at all times */
  border: 15px; /* IT'S NOT EVEN WORKING*/
  border-radius: 10px; /* roundness of banner*/
  margin: 10px; /* Banner position */
  margin-bottom: 20px;
  padding:5px;
}

a:link {
  color: White;
  background-color: transparent;
  text-decoration: none;
}

h1 {
  color:White
}

p {
  color:White;
}

