body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    background-size: 80%;
}

.container {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.budget-container,
.button-container {
    margin-top: 10px;
}

#generate-button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background-color: #2a9df4;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#generate-button:hover {
    background-color: #1e7cc8;
}

#result {
    margin-top: 20px;
    font-size: 16px;
}

#budget-select {
    font-size: 16px;
    padding: 5px;
}