/* Google Web Fonts CDN */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700,900&display=swap');

/* common */
a {
  color: #333;
  text-decoration: none;
}
body {
  font-family:  'Noto Sans KR', sans-serif;
  line-height: 1.5em;
  font-size: 22px;
  color: #fff;
  margin: 0;
}

/* layout */
.wrap {
  display: grid;
  grid-template-columns: 1fr 1200px 1fr;
  grid-template-rows: 160px auto 160px;
}
.wrap > div {
  display: grid;
  align-items: center;
  justify-content: center;
}
.bg1 {
  background-color: #B2DFDB;
}
.header {
  background-color: #80CBC4;
}
.bg2 {
  background-color: #80cbc4;
}
.cont_wrap {
  width: 1200px;
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  grid-template-rows: 120px 300px 120px;
  grid-template-areas: 'menu main top' 'menu main aside' 'menu main bottom';
}
.cont_wrap > div {
  display: grid;
  justify-items: center;
  align-items: center;
}
.menu {
  grid-area: menu;
  background-color: #4DB6AC;
  align-self: stretch;
}
.main {
  grid-area: main;
  background-color: #26A69A;
  align-self: stretch;
}
.top {
  grid-area: top;
  background-color: #009688;
  align-self: stretch;
}
.aside {
  grid-area: aside;
  background-color: #00897B;
  align-self: stretch;
}
.bottom {
  grid-area: bottom;
  background-color: #00796B;
  align-self: stretch;
}
.bg3 {
  background-color: #00838F;
}
.footer {
  background-color: #006064;
}


