#header {
    background-color: #f8c8dc;
    border-color: rgb(247, 173, 173);
    border-style: solid;
    border-width: 10px;
    border-radius: 25px;
    padding: 20px;
    font-size: 26px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 48px;
    color: #e75480;
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Quicksand', sans-serif;
}

#navbar {
    background-color: #f8c8dc;
    border: 4px solid rgb(247, 173, 173);
    border-radius: 18px;
    margin: 20px auto 10px auto;
    padding: 8px 0;
    width: 80%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(232, 84, 128, 0.08);
}
#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}
#navbar li {
    display: inline;
}
#navbar a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #e75480;
    text-decoration: none;
    font-size: 20px;
    padding: 6px 16px;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
}
#navbar a:hover {
    background-color: #ffe4ef;
    color: #c0395b;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, #fff6fb 0%, #fff0f6 100%);
    border-top: 1px solid rgba(231, 84, 128, 0.12);
    padding: 18px 0;
}
.site-footer .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #c0395b;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}
