*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;

    font-family: monospace;
}

body{
    height: 100vh;
    width: 100vw;
}

#root{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;
}

