body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    text-align: center;
}

.hero {
    background-color: #1f2937;
    color: white;
    padding: 50px 20px;
}

.profile-pic {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.projects {
    background-color: #f9fafb;
    padding: 50px 20px;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.project-card {
    background: white;
    padding: 25px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: left;
}

.project-card:hover {
    transform: translateY(-8px);
}

.buttons {
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2563eb;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1d4ed8;
}

a {
    text-decoration: none;
    color: #2563eb;
    font-weight: bold;
}
