body {
    font-family: Arial, sans-serif;
    background: url("assets/background.jpg") no-repeat center center fixed;
    background-size: 120%; /* Increase size to zoom out */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transform: scale(0.95); /* Scale down to zoom out */
}

.container {
    background-color: #6be7f3;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #333333;
}

.calculator {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #555555;
    font-size: 1.1em;
}

input[type="number"] {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

p {
    margin: 0;
    font-size: 1.1em;
    color: #007bff;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}
