body	{
background-image: url("/images/bkg.png");
text-align: center;
font-family: Verdana;
font-size: 24px;
letter-spacing: 5px;
text-shadow: 2px 2px grey;
}

img	{
	max-width: 100%;
	height: auto;
}

h6 {
	text-shadow: 0px 0px grey;
}

hr {
	margin: 10px;
}

.parallax {
  /* The image used */
  background-image: url("/images/bkg.png");

  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}

.navbar ul{
    list-style-type: none;
    background-color: #529dff;
    padding: 0px;
    margin: 10px;
    overflow: hidden;
	border: 2px solid #000000
}

.navbar a{

    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;

}

.navbar a:hover{

    background-color: #0b2a52;

}

.navbar li{

    float: left;

}
