*,
*::before,
*::after {
  box-sizing: border-box;
}

.schaschColor {
  color: rgba(255, 99, 132, 1);
  font-weight: bolder;

}

.maniColor {
  color: rgba(54, 162, 235, 1);
  font-weight: bolder;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ececec;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.outer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.bigNumberDisplay {
  width: 80%;
  text-align: center;
  margin: 50px 10px;
}

.bigNum {
  font-weight: bolder;
  font-size: 4rem;
  margin: 2rem auto;
}

h1,
h2 {
  text-align: center;
  color: #333;
}

canvas {
  width: 100% !important;
  height: auto !important;
  margin: 20px 0;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="number"],
select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

button {
  padding: 10px 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #218838;
}

@media (max-width: 850px) {
  .outer-container {
    flex-direction: column;
  }

  .container {
    margin: 10px;
  }
  .bigNumberDisplay{
    margin: 0;
  }
}