/* 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("background.gif");
  background-repeat: no-repeat;
  background-color: black;
  background-attachment: scroll;
  background-size: cover;
  color: white;
  font-family: "Comic Sans MS";
}
article {
/*border and background*/
 background:
    linear-gradient(#101010, #101010) padding-box,
    linear-gradient(to bottom right, #57C785, #EA00FF) border-box;
  border: 3px solid transparent;
  border-radius: 10px;
  
  margin: 20px auto;
  padding: 10px;
  width: 90%;
  
  /*text*/
  text-align: center;
  color: white;
  font-family: "Comic Sans MS";
  
}

p1 {
  font-size: 10px;
  color: #909090
}

a:link {
  color: #00ffe9;
}

a:visited {
  color: #e000ff;
}

a:hover {
  color: white;
}

/*pictures*/
.image-container img {
  width: 50%;
  height: 50%;
  object-fit: fill;
}

/*nav bar*/
h2, p {
  margin: 10px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: linear-gradient(to right, black, #00000080);
  position: sticky;
  top: 0;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px 30px;
  text-decoration: none;
}

ul li a:hover {
  background-image: radial-gradient(black, white);
}

ul li a.active {
  background-color: #e000ff;
  color: white;
}
</style>







