body {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    background: linear-gradient(180deg, #ffd6e8, #ffeaf3, #fff6fb);
    color: #5b4d55;
    position: relative;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.stroke-title {
    color: #ff7ca8;
    font-size: 32px;
}

header {
    padding: 2px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 246, 251, 0.9);
    z-index: 10;
}

.logo {
    font-family: "Pacifico", cursive;
    font-size: 40px;
    color: #ff7ca8;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    color: #6b5560;
    transition: 0.2s;
}

nav a:hover {
    color: #ff6ea6;
}

.section {
    padding: 80px 12vw;
    text-align: center;
    position: relative;
    z-index: 1;
}

h2 {
    margin-bottom: 10px;
}

.intro {
    font-size: 18px;
    margin-bottom: 20px;
}

.decor {
    font-size: 32px;
    color: #ff98bd;
    margin-top: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    display: block;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 150, 170, 0.25);
    font-size: 18px;
    text-decoration: none;
    color: #ff7ca8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 150, 170, 0.35);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.project-card:hover img {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    opacity: 0.6;
}

canvas#dots {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}


footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    opacity: 0.6;
}

canvas#dots {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.project-title {
    font-size: 36px;
    color: #ff7ca8;
    text-align: center;
    margin-bottom: 40px;
}

.project-large-image {
    display: block;
    max-width: 90%;
    margin: 0 auto 80px auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 150, 170, 0.25);
}

