
body {
    font-family: Poppins, sans-serif;
}

.cover h1,
.hero h1 {
    font-family: 'Alex Brush',sans-serif;
}

body{
    margin:0;
    padding:0;
    font-family:Poppins,sans-serif;
    background:#fffaf5;
    color:#333;
}

.cover{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1200') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    background:rgba(0,0,0,.5);
    color:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.overlay h1{
    font-family:'Alex Brush',sans-serif;
    font-size:60px;
}

button{
    padding:12px 25px;
    border:none;
    background:#d4af37;
    color:white;
    border-radius:10px;
    cursor:pointer;
}

section{
    padding:60px 20px;
    text-align:center;
}

.hero h1{
    font-family:'Darleston',cursive;
    font-size:50px;
}

.countdown{
    background:#f7f1e8;
}

#timer{
    font-size:30px;
    font-weight:bold;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:10px;
}

.gallery-grid img{
    width:100%;
    border-radius:10px;
}

.gift{
    background:#f7f1e8;
}

.footer{
    background:#222;
    color:white;
}