body {
    font-family: Arial, sans-serif;
    background-color: #f5f0e6;
    /* bež */
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #333;
}

h1 {
    color: #5a4a42;
    /* tamnija bež smeđa */
    margin-bottom: 20px;
}

form {
    background: #fffaf2;
    /* svjetlo bež */
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #e0d6c8;
}

label {
    font-size: 16px;
    margin-right: 10px;
}

input[type="number"] {
    padding: 6px 10px;
    font-size: 16px;
    width: 80px;
    border: 1px solid #c7b9a5;
    border-radius: 5px;
    background-color: #fff;
}

button {
    padding: 8px 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #c7a17a;
    /* bež smeđa */
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

button:hover {
    background-color: #b48e68;
}

p {
    font-size: 18px;
    color: #4d4037;
}

a {
    color: #7a5f48;
    font-size: 18px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}