@charset "utf-8";

/*
   Assignment 3 - Personal Website
   Author: Evan Barth
   Date:   05/27/2026
   Filename: personal.css
*/


html {
   background-color: hsl(210, 20%, 78%);
   background-image: url("bg.jpg");
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
}


body {
   font-family: Verdana, Geneva, sans-serif;
   color: rgb(91, 91, 91);
   background-color: ivory;
   margin-left: auto;
   margin-right: auto;
   width: 90%;
}


header {
   text-align: center;
   padding: 0;
}

header img {
   width: 100%;
}


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


h2 {
   font-size: 1.3em;
}



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

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

nav a {
   display: block;
   background-color: rgb(44, 62, 80);
   line-height: 2.8em;
   text-decoration: none;
   text-align: center;
   color: rgb(236, 240, 241);
}

nav a:hover {
   background-color: rgb(52, 152, 219);
   color: rgb(255, 255, 255);
}


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


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


body > footer {
   background-color: rgb(44, 62, 80);
   color: rgba(236, 240, 241, 0.6);
   font-weight: bold;
   font-size: 0.9em;
   line-height: 3em;
   text-align: center;
   margin-top: 10px;
   padding: 10px;
   clear: both;
}

body > footer a {
   color: rgba(236, 240, 241, 0.6);
}


ol {
   list-style-type: upper-roman;
}
