@charset "UTF-8";

/* Set background for the entire page */
html {
    background-color: #f2f2f2; /* Light gray background for the browser window */
}

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

/* Header styles */
header {
    text-align: center;
    padding: 20px;
}

/* H2 heading size */
h2 {
    font-size: 1.3em;
}

/* Navigation bar */
nav {
    background-color: #6699cc; /* Blue navigation bar */
    padding: 15px;
    text-align: center;
}

/* Links inside nav */
nav a {
    padding: 0 10px; /* Left and right padding */
    text-decoration: none; /* Remove underline */
    color: white; /* Link color */
}

/* Hover effect for nav links */
nav a:hover {
    text-decoration: underline; /* Show underline on hover */
    color: yellow; /* Change text color on hover */
}

/* Main section padding */
main {
    padding-left: 20px;
    padding-right: 20px;
}

/* Images */
img {
    width: 25%; /* Resize image */
    padding: 25px;
}

/* Footer styles */
body > footer {
    background-color: #6699cc; /* Same as nav */
    color: rgba(102, 102, 102, 0.6); /* Semi-transparent text */
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

/* Education page custom list */
.education-list {
    list-style-type: square; /* Custom bullet */
}
