@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Jura&family=Montserrat+Alternates:ital@1&family=Offside&display=swap');

body {
    background-color: black;
    color: aliceblue;
    /* font-family: 'Atkinson Hyperlegible', sans-serif;
    font-family: 'Jura', sans-serif;
    font-family: 'Montserrat Alternates', sans-serif; */
    font-family: 'Offside', sans-serif;;
}

#main {
    margin: 0 auto;
    width: 80%;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
}

#main h1 {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #1a1a1a;
}

#footer {
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #1a1a1a;
}

#body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #1a1a1a;
    width: 100%;
}

#login {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    background-color: #1a1a1a;
    margin-top: 2vh;
}

.keypad {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    background-color: #1a1a1a;
    margin-top: 2vh;
    flex-wrap: wrap;
    justify-items: center;
}

.button {
    width: 98%;
    border-radius: 10px;
    background-color: #1a1a1a;
    color: aliceblue;
    font-size: 2rem;
    border: 1px solid aliceblue;
    margin-top: 1em;
    text-align: center;
    padding: 1%;
    cursor: pointer;
    transition: 0.3s;
}

.button:active {
    background-color: #fb0473;
}

.user-input {
    margin-top: 5vh;
}

.label {
    margin-top: 2vh;
}