/* Main style Sheet */

* {
  color: pink;
}

body {
  background-image: url('cloverbackground.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

h1 {
  margin: 15px;
  text-align: right;
}

h2, p, hr, pre{
  margin: 15px;
}

h3 {
  text-align: center;
  font-size: 100px;
}

a {
  text-align: center;
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color:rgb(25, 25, 25);
  position: sticky;
  top: 0;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}























