@charset "utf-8";

/* HTML background */

html {
   background-color: rgb(210, 225, 235);
}


/* Body styles */

body {
   font-family: Verdana, Geneva, sans-serif;
   color: rgb(91, 91, 91);
   background-color: ivory;
   margin: 25px;
}


/* Header styles */

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


/* h2 heading styles */

h2 {
   font-size: 1.3em;
}


/* Navigation styles */

nav {
   background-color: rgb(70, 90, 120);
   padding: 15px;
   text-align: center;
}


/* Navigation links */

nav a {
   padding-left: 10px;
   padding-right: 10px;
   text-decoration: none;
   color: white;
}


/* Navigation hover effect */

nav a:hover {
   text-decoration: underline;
   color: lightblue;
}


/* Main section */

main {
   padding-left: 20px;
   padding-right: 20px;
}


/* Image styles */

img {
   width: 25%;
   padding: 25px;
}


/* Footer styles */

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


/* Education page list style */

ul {
   list-style-type: square;
}