
html{
  /*Set some global colors here for quick re-coloring of stuff!*/
  --bg-color: #f9e79f;
  --darker-color: #85c1e9;
  --lighter-color: #fef9e7;
  --accent-color: #fcf3cf;
  --Link-color: DarkBLue;

  --sidebar-width:140px;
  background-color: var(--bg-color);
  background-image: url(); /*add image url for tiled background*/
  width: 100%;
  min-height: 100vh;
  position: relative;
}
 
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 400px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

h1 {
    color: #007bff;
    margin-bottom: 20px;
}

.input-container {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

.result-container {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}