@charset "utf-8";

html {
   background-image: url("background.jpg");
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
}

body {
   font-family: Verdana, Geneva, sans-serif;
   color: rgb(220, 220, 220);
   background-color: rgba(20, 20, 30, 0.95);
   margin: 0;
   width: 90%;
   margin-left: auto;
   margin-right: auto;
}

header {
   text-align: center;
   padding: 20px;
}

header h1 {
   color: white;
   text-shadow: 0px 0px 10px cyan;
}

h2 {
   font-size: 1.3em;
}

h2 {
   text-shadow: 4px 6px 5px gray;
}

nav ul {
   list-style: none;
   margin: 0;
   padding: 0;
}

nav li {
   display: block;
   width: 20%;
   float: left;
}

nav a {
   display: block;
   background-color: rgb(40, 40, 60);
   line-height: 2.8em;
   text-decoration: none;
   text-align: center;
   color: white;
}

nav a:hover {
   background-color: rgb(0, 150, 255);
   color: black;
}

nav::after {
   content: "";
   display: table;
   clear: both;
}

main {
   padding: 20px;
   margin-top: 35px;
}

main > img {
   width: 25%;
   padding: 25px;
   float: right;
}


header img {
   width: 100%;
   padding: 0;
}

body > footer {
   clear: both;
   background-color: rgb(70, 90, 120);
   color: rgba(255,255,255,0.6);
   font-weight: bold;
   font-size: 0.9em;
   line-height: 3em;
   text-align: center;
   margin-top: 10px;
   padding: 10px;
}
ul {
   list-style-type: square;
}
