/* 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 {
  margin: 0px;
  color: #333333;
  font-family: helvetica;
  height: 100%;
}

h1 {
  margin: 0px;
  padding: 20px 0;
  background: -webkit-linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(230, 225, 225, 1) 100%);
  text-align: center;
}

nav {
  background: #252525;
  height: 30px;
  padding-left: 30px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  float: left;
  display: block;
  color: #ffffff;
  padding: 5px 7px;
  background: #252525;
}

nav a {
  color: #ffffff;
  text-decoration: none;
}

nav li:hover {
  background: #555555;
  cursor: pointer
}

.updates {
  width: 500px;
  margin: 30px auto;
  min-height: 300px;
  border-radius: 7px;
  background: #ebebeb;
  padding-bottom: 20px;
}

.updates h2 {
  margin: 0;
  padding: 20px 0;
  font-size: 35px;
  text-align: center;
}

.updates ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.updates li {
  margin: 0 10px;
  padding: 10px 0;
  border-bottom: 2px solid #777777;
}

.updates p {
  margin: 5px 20px;
  color: #333333;
}

.updates a {
  text-decoration: none;
}

.updates a:hover {
  text-decoration: underline;
  color: #333333;
}