/*** 

This stylesheet has seen a minor revamp and now has different default padding and looks. The old appearance can be used via the "old" class.

***/

body {
	font-family: "Consolas", "Arial", sans-serif;
	font-size: 1em;
	background: #8dd0fb; 
	text-align: center; /*Text is centered by default.*/
	background-size: cover;
	background-attachment: fixed;
  background-position:center;

}

h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing:4px;
  }
  
p {
	margin: 0 16px 16px 16px;
}
 
/*Use as the class of spans or divs you want to have normal left-aligned text.*/
/*You can combine classes by putting them together with a space, i.e. <div class="box left"> will be a div using "box" and "left" styles.*/
.left {
  text-align:left;
  }

/*A box that stays at a fixed height and scrolls when content gets too long.*/
.box {
  margin: 0 auto;
	overflow: auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	height: 24em;
}

.box-round {
  margin: 0 auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	height: 24em;
	margin-top: 7.5%;
	overflow: auto;
	padding: 20px;
	padding-bottom: 30px;	
	border-radius: 50%;
	padding: 7.5em 6em;
}

/*A box that doesn't scroll, instead growing in height.*/
.box-noscroll {
  margin: 1% auto 1% auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 75%;
	max-width: 800px;
	padding: 0 4em;
}

/*Old box attributes. Use if you want an old-style box.*/
.old {
	margin-top: 3%;
	margin-bottom:3%;
	width: 460px;
	min-height:50px;
	padding: 20px;
	padding-bottom: 30px;	
  }
  
/*Prevent overflow of large images.*/
.box img, .box-noscroll img, .box-round img {
  max-width: 100%;
  height: auto;
  }
  

.pretty {
	border: 3px solid #8dd0fb;
	border-radius: 35px;
	margin: 1em;
}


ul {
  list-style-type: none;
  margin: auto;
  width:350px;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;
}

li a {
  display: block;
  color: #1D34B6;
  background-color: #8dd0fb;
  text-align: center;
  margin: 0 16px 0 8px;
  padding: 16px 24px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #111;
}


/*For narrow screens.*/
@media (max-width: 500px) {
  .box, .box-noscroll {
    width: 85%;
    }
  }
  
/*Mobile compatibility*/
@media (orientation: portrait) {
  .box, .box-noscroll {
    width: 85%;
    }
  }