body{
margin:0;
font-family:Poppins,sans-serif;
background:linear-gradient(135deg,#ff758c,#ff7eb3,#ffc3a0);
overflow-x:hidden;
color:white;
text-align:center;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.hero h1{
font-size:4rem;
animation:pulse 2s infinite;
}

button{
padding:15px 30px;
border:none;
border-radius:50px;
font-size:18px;
cursor:pointer;
}

.hidden{
display:none;
}

#letter{
max-width:700px;
margin:auto;
padding:30px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
border-radius:20px;
}

.gallery{
padding:60px 20px;
}

.slider{
display:flex;
overflow:auto;
gap:20px;
justify-content:center;
}

.slider img{
width:250px;
height:350px;
object-fit:cover;
border-radius:20px;
}

.special{
padding:80px 20px;
}

.special li{
list-style:none;
font-size:24px;
margin:20px;
}

@keyframes pulse{
50%{
transform:scale(1.05);
}
}