body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffe4e1, #ffd700);
    color: #333;
}

header {
    background: #ff69b4;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

section#home {
    background: #ffefd5;
    padding: 60px;
    border-bottom: 2px solid #ff69b4;
}

.btn {
    background: #ff69b4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background: #ff69b4;
    color: white;
    text-align: center;
    padding: 10px 0;
}