/* This is our CSS file, which we are using to style our HTML file. */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

#header, #footer {
    text-align: center;
    background-color: #1E3A8A;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#header h1, #footer p {
    margin: 0;
    font-size: 36px;
}

#header p {
    margin: 5px 0 0 0;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

#page-wrap {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#pic {
    float: right;
    margin: 10px 0 10px 20px;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.vcard {
    font-size: 14px;
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid #1E3A8A;
    padding-bottom: 10px;
    color: #1E3A8A;
    font-size: 24px;
}

h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

h3 span {
    font-size: 14px;
    color: #666;
}

h3 span a {
    color: #1E3A8A;
    text-decoration: none;
}

h3 span a:hover {
    text-decoration: underline;
}

ul {
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style-type: disc;
}

ul li {
    margin: 5px 0;
}

.mypicture {
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

a {
    color: #1E3A8A;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
