* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: 2fr 1fr 1fr; */
  background-color: blueviolet;
  gap: 10px;

  border: 2px solid rgb(140, 42, 42);
  width: 600px;
  height: 500px;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* height: 100px; */
  background-color: orange;
  border: 2px solid black;
  border-radius: 5px;
}


