body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #005f73; /* A professional blue */
    color: white;
    text-align: center;
    padding: 2rem 0;
}

nav {
    background: #0a9396;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto; /* This centers the section */
    background: white;
    margin-bottom: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #001219;
    color: white;
}
/* Styles for Project Cards */
.project-card {
    background: #e9d8a6; /* A light tan background */
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Styles for the Quote App Box */
.quote-app {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    margin-top: 1rem;
}

#quote-button {
    background: #0a9396;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

#quote-button:hover {
    background: #005f73; /* A darker blue on hover */
}

#quote-display {
    font-style: italic;
    min-height: 2rem; /* Makes sure there's always space for the quote */
    padding: 1rem;
}
/* Style for the headshot image */
.headshot {
    width: 200px;           /* Makes the image 200 pixels wide */
    height: 200px;          /* Makes the image 200 pixels tall */
    object-fit: cover;      /* Crops the image to fill the space nicely */  
    display: block;         /* Treats the image as a block element */
    margin: 0 0 1rem 0;    /* Top:0, Right:0, Bottom:1rem, Left:0 */
}
/* This indents the first line of the paragraph */
#about p {
    text-indent: 2em;       /* Creates the indent for the first line */
}