* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
            
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    margin: 0;
    padding: 10px;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
    color: seashell;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.profile div figure {
    background-image: url(../images/headshot.JPG);
    background-size: 130%;
    width: 50%;
    aspect-ratio: 1;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.bio {
    margin-top: 20px;
    line-height: 1.6;
}

.bio a {
    color: #0073e6;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

.bio a:hover {
    color: #005bb5;
    border-bottom: 2px solid #005bb5;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #222;
    color: white;
    margin-top: 20px;
}