body {
  background: #222 url("/images/purpskybg.jpg"); /*Replace with your own background image.*/
  background-size: cover;
	background-attachment: fixed;
  background-position:center;
	color: white;
	font-size: 17px;
  }

h1, h2, h3 {
    text-align: center;
    font-family: "Jersey 15", sans-serif;
    text-decoration: underline;
    font-size: 3.0em;
    font-style: normal;
    font-weight: 400;
}
  
a {
  color: rebeccapurple;
  text-decoration: none;
  
  }
  
a:hover {
  color: darkorchid;
  }
  
  table {
  border-collapse: collapse;
  width: 100%;
}

  tr {
    border-bottom: 1px solid #fff;
    padding-top: 5px;
  }

  tr:hover {
    background-color: pink;
  }
  
.links {
  border-top: 1px solid #ccc;
  background: rgb(238, 238, 238, 0.05);
  padding-left: 25px;
  padding-right: 25px;
  list-style-type:none;
  text-align: center;
  font-family: "Handjet", sans-serif;
  font-size: 1.6em;
  }
  
/*For the first link in the links bar*/
.link-first {
  display: inline-block;
  border-right: 1px solid #ccc;
  padding: 2px;
  padding-right: 11px;
  padding-bottom: 15px;
  padding-top: 10px;
  text-align: center;
  }
  
.link {
  display: inline-block;
  border-right: 1px solid #ccc;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 15px;
  padding-top: 10px;
  text-align: center;
  }
  
/*For the last link in the links bar*/
.link-last {
  display: inline-block;
  padding: 2px;
  padding-left: 9px;
  padding-bottom: 15px;
  padding-top: 10px;
  text-align: center;
  }

.main {
  margin: 0 auto;
  width: 500px;
  background: rgb(10, 10, 10, 0.9);
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  /*Quick guide to box-shadow:
    First two numbers are vertical and horizontal offset.
    Third number is how far to spread the fuzzy effect.
    Fourth number is how much solid border/shadow there should be before the fuzzy effect begins.
  */
  box-shadow: 0px 0px 15px 2px mediumpurple;
  }

.dt {
  font-style: italic;
  color: darkviolet;
  font-size: 0.9em;
  text-decoration: none;
  padding-top: 10px;
}

.bgp {
  font-family: "Jersey 15", sans-serif;
  text-decoration: underline;
  font-size: 1.9em;
}

.sp {
  text-align: center;
  font-family: "Jersey 15", sans-serif;
  text-decoration: none;
  font-size: 3.0em;
}

.year {
  text-align: center;
  display: inline-block;
  font-family: "Jersey 15", sans-serif;
  text-decoration: underline;
  font-size: 2.7em;
}

.main-inner {
  padding: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  }
  
/*Prevent image overflow*/  
.main img {
  max-width: 100%;
  height: auto;
  }
  
.footer {
  margin: 0 auto;
  padding: 15px;
  padding-top: 0px;
  margin-top: -20px;
  text-align: center;
  font-size: 12px;
  }

/*Mobile compatibility*/
@media(orientation: portrait) {
    .main {
      width: 80%;
      }
  }