body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #ffe4f2, #ffc1e3);
}


.section-img {
    width: 80%;          
    max-width: 500px;     
    display: block;
    margin: 15px auto;    
    border-radius: 15px;
}


.hero img {
    width: 100%;
    height: 220px; 
    object-fit: cover;
}


header {
    text-align: center;
    padding: 40px;
    background: #ff69b4;
    color: white;
}

header h1 {
    font-family: 'Pacifico', cursive;
}


nav {
    display: flex;
    justify-content: center;
    background: #ff85c1;
}

nav a {
    padding: 15px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    background: #ff1493;
    transform: scale(1.1);
}


.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}


.card {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}


.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,105,180,0.6);
}


.section-img {
    width: 100%;
    margin-top: 15px;
    border-radius: 15px;
}


button {
    background: #ff69b4;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff1493;
}

#result {
    font-weight: bold;
    margin-top: 10px;
}


footer {
    text-align: center;
    padding: 20px;
    background: #ff69b4;
    color: white;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

footer i {
    margin: 0 5px;
    transition: 0.3s;
}

footer i:hover {
    transform: scale(1.2);
}


@media (max-width: 600px) {
    .hero img {
        height: 200px;
    }
}