@charset "UTF-8";
/* CSS Document */

/*general styles below*/

html, body {
  background: #ffeead;
  box-sizing: border-box;
  margin: 0px;
	font-size: 1.5em;
}

.colorBox div {
    color: #ffeead;
	padding: 10px 20px;
}

.colorBox > div:nth-child(1) {
  background: #4C0A06;	
}

.colorBox > div:nth-child(2) {
  background: #88b0d8;
}

.colorBox > div:nth-child(3) {
      background: #ff6f69;
}

.colorBox > div:nth-child(4) {
      background: #ffcc5c;
}

.colorBox > div:nth-child(5) {
      background: #4C0A06;
}



.flexbox-header {
  background: #96ceb4;
  color: black;
	text-align: center;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 30px;
  
}


.container{
display: grid;
height: 100vh;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: auto 1fr auto;
}

.flexbox-header {
  grid-column: 1 / -1;
  font-family:'Knewave', serif;
}

.menu {
  grid-column: 1 / 2;

}

.content {
  grid-column: 2 / -3;
}

.aside {
  grid-column: -3 / -1;
}

.footer {
  grid-column:  1 / -1; 
  font-family:'Knewave', serif;
  font-size: 20px;

}

.flexbox-header {
  display: flex;
  flex-wrap: wrap;
}

.flexbox-header>div {
  flex: 1 1 200px;
  text-align: center;
}

/* for tablet  */
@media screen and (max-width: 1200px) {
  .aside {
    grid-column: 1 / -1;
  }

  .content {
    grid-column: 7 / -1;
  }

  .menu {
    grid-column: 1 / 7;
  }
}

/* for phone */
@media screen and (max-width: 600px) {
  .menu, .content {
    grid-column: 1/ -1;
  }

  .container {
grid-template-rows: auto;
  }
 
  .flexbox-header>div {
    padding: 0;
  }

}




