@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff9e6; /* soft yellow background */
    color: #333;
}

header {
    background: linear-gradient(to right, #a8edea, #fed6e3);
    padding: 1.5em 1em 1em;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #ffcc80;
}

.logo {
    width: 80px;
    position: absolute;
    top: 10px;
    left: 20px;
}

h1, h2, h3 {
    color: #ff7043; /* bright orange */
    text-shadow: 1px 1px #fff3e0;
}

nav {
    margin-top: 15px;
}

nav a {
    display: inline-block;
    margin: 0 12px;
    padding: 10px 15px;
    background-color: #fff176; /* cheerful yellow */
    border-radius: 10px;
    color: #5d4037;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ffd54f;
}

nav a i {
    margin-right: 6px;
    color: #f06292; /* pinkish icons */
}

main {
    padding: 2em;
    max-width: 800px;
    margin: auto;
    background-color: #f3fce1; /* pastel green */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

footer {
    background-color: #ce93d8; /* pastel purple */
    padding: 1em;
    text-align: center;
    color: white;
