body {
    font-family: 'Comic Sans MS','Noto Sans', Arial, Helvetica, sans-serif;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    margin: 0;
}

header {
    background: #fff;
    border-bottom: 2px solid #ee0979;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1em;
    color: #ff6a00;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ee0979;
}

main {
    flex: 1;
}

.container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.title {
    font-size: 2.5em;
    color: #ee0979;
    margin-bottom: 20px;
}

input {
    margin: 10px 0;
    padding: 15px;
    width: calc(100% - 40px);
    border: 2px solid #ee0979;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
}

button {
    padding: 15px 30px;
    cursor: pointer;
    background: #ee0979;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background: #ff6a00;
}

#result {
    margin-top: 20px;
    font-size: 1.5em;
    color: #ee0979;
}