@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: #6c0f58;
}

.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;
  
}

.directions {
color:#ffcc5c;
}

.address {
  color:#ffffff;
}

.days {
  color: #ffcc5c;
  font-size: 1rem;

}

.hours {
  color: #ffffff;
}

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

.flexbox-header {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  
}

.flexbox-header>div {
  flex: 1 1 auto;
  text-align: center;
  font-family:'Knewave', serif;
}

.menu {
  grid-column: 5 / 10;

}

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

.aside {
  grid-column: -7 / 13;
  grid-row: 3 / 4;
}


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

}



/* 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;
  }

}




