@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap');

* {
    box-sizing: border-box;
}

body{
    background-color: rgb(26, 26, 26);
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    color: white;
}

div {
    position: absolute;
    bottom: 20px;
    background: rgb(17, 17, 17);
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
}

input {
    width: 50px;
    padding: 5px;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    border: none;
    text-align: center;
    border-radius: 10px;
}

input:focus {
    outline: none;
}
