* {
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
}

.full {
  width: 100vw;
  height: 100vh;
}

.flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  width: 100%;
}

input,
button {
  height: 64px;
  font-size: 38px;
  width: 100%;
}

label {
  font-weight: bold;
}

#table,
table {
  width: 100%;
  text-align: center;
}

table,
th,
td
{
  border: 1px solid black;
}