body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:#FDF9FA;
}

.hero{
    background:linear-gradient(135deg,#D8A8B8,#E9C7D2);
    color:white;
    padding:80px 20px;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.gallery-card{
    background:white;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    text-decoration:none;
    color:#555;
    box-shadow:0 8px 20px rgba(216,168,184,.2);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-8px);
    background:#D8A8B8;
    color:white;
}

.gallery-card:hover h4{
    color:white;
}

.gallery-card h4{
    color:#C98FA3;
    margin:15px 0;
    transition:.3s;
}

.gallery-card p{
    margin:0;
}

.emoji{
    font-size:60px;
}

.btn-home{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:330px;
    height:70px;

    background:#D8A8B8;
    color:#fff;

    text-decoration:none;
    font-size:20px;
    font-weight:600;

    border-radius:50px;

    box-shadow:0 8px 20px rgba(216,168,184,.35);

    transition:all .3s ease;
}

.btn-home:hover{
    background:#C98FA3;
    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(201,143,163,.45);
}

.btn-home:active{
    transform:scale(.97);
}