/*Reset and Overall Container*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-width: 900px;
  padding-bottom: 20px;
  margin: 0 auto;
  font-family: sans-serif;
  border: 1px solid #e0e0e0;
}

/*Header and Mini Boxes*/
.header {
  background: #60C2FF;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.mini-box {
  width: 129px;
  height: 57px;
  background: #D9D9D9;
}

/*--Main Content Area--*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  grid-template-rows: repeat(3, 250px);
  justify-content: center;
  padding: 20px;
  gap: 20px;

}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

/*--Box Sizes & Colors--*/
.box-1,
.box-2,
.box-5,
.box-6 {
  width: 250px;
  height: 250px;
}

.box-1 {
  grid-column: 1;
  grid-row: 1;
  font-size: 3rem;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
  background: #FF6060;
  color: #fff;
}

.box-2 {
  grid-column: 2;
  grid-row: 1;
  font-size: 3rem;
  text-align: center;
  padding-top: 97px;
  padding-bottom: 97px;
  background: #D9D9D9;
  color: #fff;
}

.box-3 {
  grid-column: 3;
  grid-row: 1 / 4;
  font-size: 3rem;
  text-align: center;
  padding-top: 97px;
  padding-bottom: 250px;
  background: #60C2FF;
  color: #fff;
  width: 250px;
}

.box-4 {
  grid-column: 1 / 3;
  grid-row: 2;
  font-size: 3rem;
  text-align: center;
  padding-top: 97px;
  padding-bottom: 97px;
  background: #ffc66b;
  color: #fff;
  height: 250px;
}

.box-5 {
  grid-column: 1;
  grid-row: 3;
  font-size: 3rem;
  text-align: center;
  padding-top: 97px;
  padding-bottom: 97px;
  background: #60C2FF;
  color: #fff;
}

.box-6 {
  grid-column: 2;
  grid-row: 3;
  font-size: 3rem;
  text-align: center;
  padding-top: 97px;
  padding-bottom: 97px;
  background: #D9D9D9;
  color: #fff;
}