/* 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." */

@font-face {
  font-family: Luminari; /* set name */
  src: url("Luminari.ttf"); /* url of the font */
}

body {
  background-image: url("kd_web_bg.jpg");
  background-size: contain;
  background-attachment: fixed;
  color: black;
  font-family: verdana, helvetica, sans-serif;
}

p {
color: white;
opacity: 1.0;
}

a {
color: white;
}

a:hover {
text-decoration: none;
}

a:visited {
  color: white;
}

a:active {
  color: red;
}

h2 {
color: #f7e1bc;
}

.title {
color: black;
text-shadow: 2px 2px 5px white;
text-align: center;
font-size: 9vw;
margin: 2vw;
}

.header {
background-image: url("web_header_bg4.jpg");
background-position: right center;
background-size: 100%;
font-family: luminari, georgia, serif;
text-align: center;
}

ul.nav {
list-style-type: none;
  margin: 0;
  padding: 0px;

display: inline-block;
text-align: left;
font-size: 3vw;
text-shadow: 2px 2px 10px white;
}

ul.nav li {
float: left;
}

ul.nav li a {
  display: block;
  color: black;
  text-align: center;
  padding: 10px 10px;
  margin: 0px 7px 0px;
  text-decoration: none;
}

ul.nav li a:hover {
  color: white;
  text-shadow: 2px 2px 10px black;
}

div {
background: rgba(60, 60, 60, 0.8);
color: white;
padding: 20px;
margin: 10px auto 10px;
width: 90%;
}

.news a {
color: white;
font-style: italic;
font-weight: bold;

}


