@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body {
  margin: 0;
  display: grid;
  height: 100vh;
  grid-template-rows: 320px 1fr 100px;
  background-color: #FBF7EF;

}


.area_1 {
  grid-row: 1/2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 2fr 3fr 5fr;
  margin-bottom: 10px;
  background-color: #BC4749;

}



.area_2 {
  display: grid;
  grid-row: 2/3;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 20vw 20vw 1fr;
  grid-gap: 5px;
  
}



.area_3 {
  display: grid;
  grid-row: 3/4;
  margin-top: 10px;
  background-color: #687351;
}


.nav-container {
  grid-column: 1/4;
  grid-row: 1/2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*border: 2px solid navy;*/

}

/* list version of navigation bar */
/*
.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  border: 2px solid yellow;
}

.nav-list li {
  display: block;
  align-self: stretch;
  border: 2px solid lightblue;
}

.nav-list a {
  text-decoration: none;
  text-align: center;
  height: 100%;
  color: #FBF7EF;
  border: 2px solid pink;
}
*/






/* non-list version of navigation bar */

.nav-item {
  display: block;
  text-align: center;
  margin: 0%;
  padding: 0 1.5%; /* top-bottom & right-left*/
  /*border: 2px solid lightblue;*/
}

.nav-item a {
  text-decoration: none;
  Font-Family: 'PT Serif', Serif;
  color: #FBF7EF;
  font-size: 1em;
  font-weight: 400;
}

.nav-item a:hover{
  color: #413110;
}




.cover {
  grid-column: 2/4;
  grid-row: 2/3;
  display: flex;
  background-image: url("/image/shillin-night-market.jpg");
  background-color: gray;
  background-position-y: 45%;
  background-repeat: no-repeat; 
  background-size: cover; 
  
}

.cover-strip {
  width: 2.5%;
  background-color: #BC4749;
}

.space_1 {
  margin-left: 7%;
}

.space_2 {
  margin-left: 14%;
}

.space_3 {
  margin-left: 20%;
}



.title-container {
  grid-column: 1/4;
  grid-row: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-box {
  margin: 0% 2%; /* top-bottom & right-left*/
  color: #FBF7EF;
}


.title-box h1 {
  Font-Family: 'Rufina', Serif;
  font-size: 2.5em;
  font-weight: 900;
  margin: 0;
  padding: 0;
}

.title-box h4 {
  Font-Family: 'PT Serif', Serif;
  font-size: 1em;
  font-weight: 200;
  margin: 0;
  padding: 0;
}



.img {
  border-radius: 10px;
	margin: 0.5%;
}

.beef-noodle{
  grid-column: 2/4;
  grid-row: 1/3;
  background-image: url("/image/beef-noodle.jpg");
  background-color: gray;
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover; 
}
.mango-shaved-ice {
  grid-column: 1/2;
  grid-row: 1/2;
  background-image: url("/image/mango-shaved-ice.jpg");
  background-color: gray;
  background-position: top;
  background-repeat: no-repeat; 
  background-size: cover;
}

.spring-roll{
  grid-column: 1/2;
  grid-row: 2/3;
  background-image: url("/image/spring-roll.jpg");
  background-color: gray;
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover;
}

.description {
  grid-column: span 3;
  grid-row: 3/4;
  margin-top: 10px;
  margin-bottom: 10px;
}

.description-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;

}

.description-box {
  margin-top: 1%;
  margin-bottom: 1%;
  color: #413110;
}

.description-box h2 {
  /*
  Font-Family: 'Anton', Sans-Serif;
  */
  Font-Family: 'Rufina', Serif;
  margin: 0.5% 0; /* top-bottom & right-left*/
  padding: 0;
  font-size: 2em;
  font-weight: 900;
}

.description-box h3 {
  /*
  Font-Family: 'Signika', Sans-Serif;
  */
  Font-Family: 'PT Serif', Serif;
  margin: 0.5% 0; /* top-bottom & right-left*/
  padding: 0;
  font-size: 1.2em;
  font-weight: 400;
}

.description-box h4 {
  /*
  Font-Family: 'Signika', Sans-Serif;
  */
  Font-Family: 'PT Serif', Serif;
  margin: 0.5% 0; /* top-bottom & right-left*/
  padding: 0;
  font-size: 1em;
  font-weight: 200;
  text-align: justify;
}



.footer {
  display: flex;
  Font-Family: 'PT Serif', Serif;
  font-size: 0.75em;
  font-weight: 400;
  color: #413110;
  justify-content: center;
  align-items: center;

}



