html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff5f7;
    color: #4a4a4a;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.sky-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffe1eb, #fff5f7);
    z-index: 1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 150px 130px, #fff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 280px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 320px 220px, #fff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 90px 280px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 210px 340px, #fff, rgba(0,0,0,0));
    background-size: 400px 400px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}
.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    width: 120px;
    height: 40px;
}

.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
}

.cloud::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 15px;
}

.cloud::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 15px;
}


.cloud.c1 {
    top: 15%;
    left: -150px;
    transform: scale(0.8);
    animation: float 25s linear infinite;
}

.cloud.c2 {
    top: 40%;
    left: -150px;
    transform: scale(1.2);
    animation: float 35s linear infinite;
    animation-delay: 5s;
}

.cloud.c3 {
    top: 70%;
    left: -150px;
    transform: scale(0.9);
    animation: float 30s linear infinite;
    animation-delay: 12s;
}

@keyframes float {
    0% { left: -150px; }
    100% { left: 100%; }
}


.main-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #e91e63;
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(233, 30, 99, 0.15);
}

header p {
    color: #9c647d;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
}

#projects {
    width: 90%;
    max-width: 400px;
}

.project {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(244, 143, 177, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(244, 143, 177, 0.4);
    background: #ffffff;
}

.project a {
    display: block;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
}

.project h3 {
    margin: 0 0 12px 0;
    color: #e91e63;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.project p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #777;
}
