body{
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: green;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid green;
}
form{
    display: flex;
    flex-direction: column;
    border: 1px solid green;
    padding: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
h1{
    background-color: green;
    color: black;
    padding: 5px;
    border-radius: 10px;
}
label,input,button,p{
    font-size: 1.5em;
}
input{
    background-color: black;
    color: green;
    width: 100%;
    border-radius: 10px;
    padding: 5px;
    border: none;
    text-align: center;
}
button{
    background-color: green;
    color: black;
    border-radius: 10px;
    padding: 5px;
    border: none;
    font-weight: bolder;
}
.inner-container{
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.text{
    margin: 30px;
}
*{
  font-family: "Bitcount Grid Double", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}