body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #14181c;
    color: #97aebb;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

h1, h2 {
    color: white;
    text-align: center;
}
.title span {
  display: block;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #ba00d7;
    text-decoration: underline;
}

.github-link {
    text-align: center;
    margin: 30px 0;
}

.project-image {
    text-align: center;
    margin: 30px 0;
}

.project-image img {
    max-width: 93%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.image-gallery {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.image-gallery img {
    max-width: 30%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.caption {
    font-size: 0.9em;
    text-align: center;
    margin: 10px auto 20px;
    color: #ccc;
}

footer {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 30px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 1em;
    }

    .image-gallery img {
        max-width: 45%;
    }
}
