body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

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

header {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.tagline {
    font-size: 1.2em;
    color: #ccc;
}

nav {
    background: #444;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

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

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

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.resume-block {
    margin-bottom: 20px;
}

.skills {
    list-style: none;
    padding: 0;
}

.skills li {
    display: inline-block;
    background: #ddd;
    margin: 5px;
    padding: 5px 10px;
    border-radius: 5px;
}

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

.project {
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-left: 4px solid #444;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.project h3 {
    margin-top: 0;
}

.project a {
    color: #0066cc;
    text-decoration: none;
}

.project a:hover {
    text-decoration: underline;
}

#dynamic-text::after {
    content: "|";
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
