:root {
  --bg-header: #93eca2;
  --bg-primary: #dff3dd;
  --bg-card: #f1fff1;

  --green-primary: #90ee90;
  --green-secondary: #87df87;
}

*{
  margin: 0;
  padding: 0;
}

body{
  overflow-x: hidden;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  background-repeat: no-repeat;
}

.loader{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;

  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 10px;
  outline: none;
}

.contenido{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}