body {
  text-align: center;
  font-family: sans-serif;
  color: #fff;
  background-color: #f45436;
  margin: 0;
}

main {
  display: grid;
  grid-template: auto 1fr auto / auto 1fr auto;
}

#my_stuff, #public_stuff {
  width: 50vw;
  height: 80vh;
  overflow-y: scroll;
}

#my_stuff {
  color: #333;
  background-color: #fff;
}

#public_stuff {
  color: #444;
  background-color: #f5f0f0;
}

#myo_cards {
  display: grid;
  place-items: center;
}

table.card {
  margin: 2em;
  padding: 2em;
  border-radius: 2em;
}

table.card:nth-child(odd) {
  background-color: #f5f0f0;
}

table.card:nth-child(even) {
  border: solid 1em #f5f0f0;
}

img.yoto-card {
  border-radius: 10px;
  background-color: #000c;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}
