/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    background-color: #071c31;
    color: white;
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Main content styles */
main {
    flex: 1;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Section styles */
section {
    margin-bottom: 2rem;
}


section h2 {
    color: #edae02;
    margin-bottom: 1rem;
}

section img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: block;
    margin: 1rem auto;
}

section p, section ul {
    margin-bottom: 1rem;
}

section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

section ul li {
    margin-bottom: 0.5rem;
}

/* Footer styles */
footer {
    background-color: #071c31;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Link styles */
a {
    color: #edae02;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
