
body {
  background: url(https://twilight.blue/arc/castlewall.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
    color: #fff;
}

.content {
  text-align: center;
  font-family: 'Noto Sans SC', sans-serif;
  color: #000;
  margin: 40px auto;
  background: rgba(0,0,0, 0);
  width: 95%;
  max-width: 1300px;
  border-radius: 5px;
  padding-bottom: 32px;
}


h1, h1 a {
  min-height: 120px;
  width: 960px;
  max-width: 1400px;
  vertical-align: middle;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  color: #688CC;
  padding-top: 80px;
}

p {
  width: 95%;
  max-width: 1300px;
  text-align: left;
  color: #000;
  margin: 0 auto;
  padding-bottom: 15px;
}

table.paleBlueRows {
  font-family: 'Noto Sans SC', sans-serif;
  border: 1px solid #6CFF1A;
  background-color: #99EE99;
  text-align: center;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  word-wrap: break-word;
}
table.paleBlueRows td, table.paleBlueRows th {
  border: 2px solid #29FF99;
  padding: 2px 2px;
}
table.paleBlueRows tbody td {
  font-size: 16px;
  color: #000;
  margin: 6px;
 
}
table.paleBlueRows tfoot td {
  font-size: 16px;
}

/*Time for the CSS*/

.slider{
	width: 640px; /*Same as width of the large image*/
	position: relative;
	/*Instead of height we will use padding*/
	padding-top: 320px; /*That helps bring the labels down*/
	
	margin: 50px auto;
	
	/*Lets add a shadow*/
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.75);
}


/*Last thing remaining is to add transitions*/
.slider>img{
	position: absolute;
	left: 0; top: 0;
	transition: all 0.5s;
}

.slider input[name='slide_switch'] {
	display: none;
}

.slider label {
	/*Lets add some spacing for the thumbnails*/
	margin: 18px 0 0 18px;
	border: 3px solid #999;
	
	float: left;
	cursor: pointer;
	transition: all 0.5s;
	
	/*Default style = low opacity*/
	opacity: 0.6;
}

.slider label img{
	display: block;
}

/*Time to add the click effects*/
.slider input[name='slide_switch']:checked+label {
	border-color: #666;
	opacity: 1;
}
/*Clicking any thumbnail now should change its opacity(style)*/
/*Time to work on the main images*/
.slider input[name='slide_switch'] ~ img {
	opacity: 0;
	transform: scale(1.1);
}
/*That hides all main images at a 110% size
On click the images will be displayed at normal size to complete the effect
*/
.slider input[name='slide_switch']:checked+label+img {
	opacity: 1;
	transform: scale(1);
}
/*Clicking on any thumbnail now should activate the image related to it*/

/*We are done :)*/


pre, code {
  font-family: monospace, monospace;
  color: #000000;
  background-color: #99BBFF;
}

 /* unvisited link */
a:link {
    color: #333333;
}

/* visited link */
a:visited {
    color: #333333;
}

/* mouse over link */
a:hover {
    color: #FF4422;
}

/* selected link */
a:active {
    color: #333333;
}

/*----------------------------
    The Footer
-----------------------------*/

.footer-distributed {
  background-color: #000000;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 20px 50px;
}

.footer-distributed .footer-left p {
  color: #3355DD;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #6677DD;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: " ";
  font-size: 20px;
  left: 0;
  color: #6677DD; 
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}


.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #111111;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 900;
  color: #CC0099;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition:all .25s;
}

.footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}

/* Media Queries */

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}
