/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f9f9f9;
}

h1, h2 {
    margin: 0;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: linear-gradient(135deg, #4a90e2, #0070f3);
    padding: 20px;
    text-align: center;
    color: white;
}

header .logo h1 {
    font-size: 2rem;
}

header .author {
    font-size: 1rem;
    margin-top: 5px;
    font-style: italic;
}

.intro {
    text-align: center;
    padding: 40px 20px;
    background: #f0f4f8;
}

.intro .featured-img {
    max-width: 250px;
    border-radius: %;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro .quote {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.projects {
    padding: 40px 20px;
}

.projects h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #0070f3;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
    font-weight: 500;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: #f0f4f8;
}

.project span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0070f3;
}

footer {
    text-align: center;
    padding: 20px;
    background: #eef4f8;
    font-size: 0.9rem;
    color: #555;
}