*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    height: 100vh;
    display: grid;
    place-content: center;
    background-color: rgb(207, 207, 207);
}

.tabuada{
    height: 700px;
    width: 400px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.tabuada input{
    width: 70%;
}

p{
    margin: 5px;
}