body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#fff9fb;
}

header{
    background:#ffdce8;
    text-align:center;
    padding:30px;
}

header h1{
    color:#d63384;
    margin:0;
}

header p{
    color:#555;
}

nav{
    background:white;
    display:flex;
    justify-content:center;
    gap:20px;
    padding:15px;
    border-bottom:1px solid #eee;
}

nav a{
    text-decoration:none;
    color:#444;
    font-weight:bold;
}

section{
    text-align:center;
    padding:30px;
}

button{
    background:#ffdce8;
    border:none;
    padding:12px 20px;
    margin:8px;
    border-radius:25px;
    cursor:pointer;
    font-weight:bold;
}

button:hover{
    background:#f8bfd4;
}
