* {
  box-sizing: border-box;
}
body {
  background-color: #38353b;
  color: white;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "intro counter" "notes notes";
  height: 80vh;
  width: 80vw;
  margin: 1em auto 0;
}
.intro {
  grid-area: intro;
  border: 1px solid #bbb;
  padding: 20px;
  border-radius: 12px;
}
.counter {
  grid-area: counter;
  border: 1px solid #bbb;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 2em;
}
.counter button {
  background-color: #38353b;
  color: white;
  border: 1px solid #bbb;
  padding: 10px;
  border-radius: 12px;
}
.notes {
  grid-area: notes;
  border: 1px solid #bbb;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}
.note {
  margin-bottom: 10px;
}
