li {
  color: gold;
  cursor: default;
}
body {
  background-color: #000000;
  font-family: sans-serif;
  background-image: url("background.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

a:link, a:visited {
  background-color: black;
  color: red;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
  
a:hover, a:active {
  color: blue;
  }

p {
  color: red;
  cursor: default;
  font-weight: bold;
}
h1,h2 {
  color: lightblue;
  cursor: default;
}
ul {
  width: 380px;
  text-align: left;
}
ol {
  width: 700px;
  text-align: left;
}
button {
  padding: 10px;
  font-size: 15px;
  border: 2px solid red;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  outline: none;
}