main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
main article {
  flex-grow: 1;
}
main header, main footer {
  box-shadow: 0px 0px 8px 0px lightgray;
}
header {
  padding: 32px;
}
footer {
  padding: 32px;
}

#nav-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#mazes-list {
  max-width: 720px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}
.mazes-listitems {
  padding: 16px;
  box-shadow: 0px 4px 8px 0px lightgray;
  position: relative;
}

.mazes-listitems-buttonsbox {
  display: flex;
  position: absolute;
  top: 0px;
  right: 0px;
  flex-direction: row;
}