* {
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #9ea1bebd;
}
.container {
  height: 100vh;
}
.root {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 10px;
}
