
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Comic Neue', cursive;
    background-color: #fffde7;
    color: #333;
    line-height: 1.6;
    padding-bottom: 60px;
}

header {
    background: #ffecb3;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

header img {
    height: 60px;
}

header h1 {
    font-size: 1.8em;
    color: #d84315;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #fff3e0;
}

.menu button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu button:hover {
    background-color: #fb8c00;
}

.content {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
    background-color: #ffecb3;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 60px;
}

footer a {
    color: #d84315;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu button {
        width: 90%;
    }

    header img {
        height: 50px;
    }

    header h1 {
        font-size: 1.5em;
    }
}
