html,* { font-family: 'Inter'; box-sizing: border-box; }
body { background-color: #f0f0eb; line-height:1.6;}
.lead { font-size: 1.5rem; font-weight: 300;background: linear-gradient(to right, #000000 0%, #000000 50%,#999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color:transparent; }
.container { margin: 20px auto; max-width: 960px; }
h1 {
  background: linear-gradient( 120deg, #bd34fe 30%, #41d1ff );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    background-repeat: no-repeat;
}

input[name="numeric-input"] {
    outline: 1px solid rgb(0, 0, 0);
    background: transparent;
    box-shadow: 0px 0px 2px black;
    border: none;
    border-radius: 5px;
    padding: 5px;
    text-align: end;
    font-size: medium;
    font-weight: bolder;
}

.container {
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.container>section {
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.container>section>span {
    background-color: rgba(0, 0, 0, 0.842);
    outline: 1px solid rgb(0, 0, 0);
    padding: 2px;
    color: whitesmoke;
    text-align: center;
    font-size: larger;
    font-weight: bolder;
}
