.grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-gap: 10px 0;
    grid-template-areas:
    "title title title title title title"
    "banner banner banner banner banner banner"
    "article1 article1 article1 article1 article1 article1"
    "images images images images images images"
    "footer footer footer footer footer footer";
}
.article1  {
    display: grid;
    grid-column: 1/7;
    grid-row: 3/4;
    grid-area: article1;
    background-color: #bbb;
    padding: 15px 60px;
    border: 1px solid black;
}
h1  {
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    margin: auto;
    padding: 20px 0;
    color: #000;
}
.p4  {
    font-size: 1.2rem;
    font-weight: 600;
    margin: auto;
    padding: 5px 15px;
}
.p2  {
    font-size: 1.2rem;
    font-weight: 600;
    margin: auto;
    padding: 5px 50px;

}
.gallery  {
    display: grid;
    grid-column: 1/7;
    grid-row: repeat 4/5;
    grid-gap: 15px;
    grid-area: images;
    background-color: #888;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}
.imgs  {
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}
.responsive  {
    width: 20%;
    height: auto;
    margin: 0 auto;
    padding: 10px 20px;
}
.footer  {
    display: grid;
    grid-column: 1/7;
    grid-row: 4/5;
    grid-area: footer;
}
.bottom  {
    color: #fff;
    background-color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 1.2rem;
    width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
body  {
    width: 100vh;
    height: 100vh;
    margin: 0 auto;
    font-family: times, helvetica;
    padding: 0;
    color: #000;
    background-color: #eee;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.grid {
    display: grid;
    grid-template-columns: 100%;
    grid-auto-rows: auto;
    grid-gap: 5px 0;
    grid-template-areas:
    "title"
    "banner"
    "images"
    "footer";
/*    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;*/
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap {
  position: fixed;
  z-index: 1;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .hamburger {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 50px;
  padding: .8rem;
  background-color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 10px;
  width: 50%;
  height: 50%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .menu > div {
  background-color: #444;
  border-radius: 20%;
  width: 95vw;
  height: 100vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .menu > div > div {
  text-align: right;
  max-width: 100vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.title  {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    grid-area: title;
    margin: 0;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #afafb5;
    border: 1px solid black;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.highlight  {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 15px 40px;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
#fs1  {
    font-size: 1.2rem;
    color: #222;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.p2  {
    font-size: 1rem;
    font-weight: 600;
    margin: auto;
    padding: 5px 50px;

}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.gallery  {
    display: grid;
    grid-column: 1;
    grid-row: repeat 3;
    grid-area: images;
    background-color: #aaa;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
h1  {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    color: #000;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.imgs  {
    margin: auto;
    text-align: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.responsive  {
    width: 100%;
    height: auto;
    margin: 0 auto;
    left: 0;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.footer  {
    display: grid;
    grid-column: 1/7;
    grid-row: 4/5;
    grid-area: footer;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.bottom  {
    color: #fff;
    background-color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 1.2rem;
    width: 100%;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.menu-wrap .menu {
  position: fixed;
  top: 10px;
  left: 60px;
  width: 27%;
  height: 25%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.menu-wrap .menu > div {
  background-color: #444;
  border-radius: 50%;
  width: 87vw;
  height: 100vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.menu-wrap .menu > div > div {
  text-align: right;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  line-height: 1.1rem;
  font-size: 1.2rem;
  padding: .7rem 0 .7rem 2rem;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.menu-wrap .menu > div > div > ul > li > a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.title  {
    display: grid;
    grid-column: 1;
    grid-row: 2;
    grid-area: title;
    margin: 0;
    min-width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #afafb5;
    border: 1px solid black;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
#fs1  {
    font-size: 1.3rem;
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: .7rem .7rem;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.gallery  {
    display: grid;
    grid-column: 1;
    grid-row: 7;
    grid-area: images;
    background-color: #aaa;
    align-items: center;
    justify-content: center;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.imgs  {
    margin: 0 auto;
    padding: 10px 0px;
    text-align: center;
}
}
@media only screen and (min-width: 415px) and (max-width: 800px) {
.responsive  {
    width: 70%;
    height: auto;
    margin: 0 auto;
    padding: 10px 20px;
}
}
