/* 
  Portfolio Styles
  Clean, minimal design with Open Sans
*/

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

/* Base body styles - centers content vertically and horizontally */
html {
    height: 100%;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.8;
    color: #7A7A7A;
    background-color: #fff;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Main content container */
main {
    max-width: 680px;
    width: 100%;
}

/* Avatar image */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin-bottom: 1.5em;
}

/* Greeting text */
.greeting {
    margin-bottom: 1em;
    color: #7A7A7A;
}

/* Regular paragraphs */
p {
    margin-bottom: 1em;
    color: #7A7A7A;
}

/* Navigation links */
.links {
    margin-top: 4em;
    margin-bottom: 0.5em;
}

.links a {
    font-family: 'IBM Plex Mono', monospace;
    color: #4397F7;
    text-decoration: none;
    margin-right: 1em;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.2s ease;
}

.links a:hover {
    color: #2a7ad4;
}

/* Work samples note */
.work-samples {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 300;
    color: #7A7A7A;
    margin-bottom: 0;
}

/* Hide the horizontal rule to match the screenshot */
hr {
    display: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        padding: 30px 20px;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    main {
        max-width: 100%;
    }
}
