/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/
body {
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}
.theAct1 {
  display: flex;
  justify-content: center;
}
.theAct1 p {
  display: flex;
  align-items: center;
  border: 4px solid grey;
  font-size: large;
  font-weight: 300;
  width: 400px;
  height: 400px;

}
.theAct2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-bottom: 3em;
}
#balance {
  font-weight: bolder;
  font-size: 1.0rem;
  margin-left: 0.3em;
}
button {
  font-size: 1rem;
  border: 1px solid black;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/
