html {
  box-sizing: border-box;
  font-size: 100%;



}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Typography Scale*/

/**/

h1 {
  font-size: 5rem;
}
h2 {
  font-size: 4rem;
}
h3 {
  font-size: 2.5rem;
}
.nood {
  grid-area:nood;
}
.soup {
  grid-area: soup;
  /*font-size: clamp(2.5rem, 10vw, 6rem);*/
  white-space: nowrap;
}

.heading {

  max-width: 1200px;
  font-family: "lakki Reddy", serif;
  font-weight: 400;
  color: #32a6fa;
  display: grid;
  grid-template-areas: "nood soup soup soup";
  justify-content: space-evenly;
  grid-area: head;

}

.navbar {
  font-family: "lakki Reddy", serif;
  font-size: 2.5rem;
  display: grid;
  grid-area: nav;
  grid-template-areas: "nav1 nav2";
  width: 100%;
}
.navbar span {
  text-align: center;
  width: 100%;
}
.grid_nav1 {
  grid-area: nav1;

}
.grid_nav2 {
  grid-area: nav2;
}

.centerimage {

  margin-left: auto;
  margin-right: auto;
  /*width: fit-content;*/
  text-align: center;
}

.centerimage img {
  border-radius: 12px;
  border: 4px solid #fa8b69;
}
.grid_container {
  margin: auto;
  display: grid;
  grid-template-areas:
"head "
"nav "
"body"
"foot";
}
body {
  font-size: 1rem;
  font-family: "sarabun", "sans-serif";
  width: fit-content;
  justify-items: center;
  grid-area: body;

}
.pstyle {
  font-size: 2.5rem;
  background-color: #bd5d58;
  padding: 30px;
  border-radius: 12px;
  border: 4px solid #fa8b69;
}

.hstyle {
  font-family: "lakki reddy", sans-serif;
  /*font-size: 4rem;*/
  display: flex;
  justify-content: center;
}
.grid_footer {
scale: unset;
  min-width: auto;
  background-color: rgba(84, 143, 186, 0.7);
  border: 4px solid #548fba;
  border-radius: .5rem;
  padding:2rem;
  display: grid;
  grid-template-areas:
"item1 item3 item3"
"item1 item4 item5"
"item2 item6 item6";
  justify-items: center;
  align-items: center;
  grid-area: foot;
}
.grid_footer div img {
  border-radius: .5rem;
  border: .25rem solid #548fba;
}
.gf_item1 {
  grid-area: item1;
  margin: 15px;
}
.gf_item2 {
  grid-area: item2;
}
.gf_item3 {
  grid-area: item3;
}
blockquote {
  font-size: 1.5rem;
}
.gf_item4 {
  grid-area: item4;
  margin: 15px;
}
img, picture {
  max-width:100%;
}

.gf_item5 {
  grid-area: item5;
  font-family: "lakki reddy", "sarabun", "sans-serif";
  font-size: 2.5rem;
  text-align: center;
}

.gf_item6 {
  grid-area: item6;
}
.button {
  display: grid;
  grid-template-areas: "submit nood";
  align-items: center;
  justify-content: center;
  margin: 20px;
}
.submit {
  grid-area:submit;

}
.nood {
  grid-area: nood;
}



a:hover {
  opacity: 0.5;
}
.grid_banner {
  display: grid;
  grid-template-areas: "pic1 pic3 pic4";
  justify-content: space-evenly;
  margin: 20px;
}

.pic1 {
  grid-area: pic1;
}
/*.pic2 {*/
/*  grid-area: pic2;*/
/*}*/
.pic3 {
  grid-area: pic3;
}
.pic4 {
  grid-area: pic4;
}

.grid_banner img {
  border:4px solid #548fba;
  border-radius: 12px;
}

.tablestyle {
  font-size: 1.5rem;
  background-color: rgba(189, 93, 88, 0.7);
  height: auto;
  border-radius: 12px;
  border: 4px solid #bd5d58;
  padding: 2rem;
  justify-items: center;
  display: grid;
  width: auto;
  margin: 20rem auto;
  text-align: center;
}

td,
th {
  text-align: center;

}
.tablestyle table {
  color: #fafa31;

}

ul {
  list-style-type: none;
}

.menustyle {
  justify-items: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  background-color: rgba(250, 139, 105, 0.7);
  border-radius: 12px;
  border: 4px solid #fa8b69;
  margin-bottom: 20px;
}
.menustyle h3 {
  padding-left: 40px;
}

h4 {
  font-family: "lakki reddy", "roboto", "sarabun", serif;
  font-size: 2.5rem;
  color: #fafa31;
}

.formstyle {
  /* background-color: rgba(189, 93, 88, 0.7); */
  display: grid;
  padding: 10px;
  grid-row-gap: 5px;
  height: auto;
  margin: 10px;
  border-radius: 12px;
  line-height: 1.5rem;


}
.formstyle input {
  width: 75%;
  font-size: inherit;
}
textarea {
  max-width: 75%;
}
.contactstyle {
  background-color: rgba(189, 93, 88, 0.7);
  font-size: 1.5rem;
  width: auto;
  padding: 10px;
  margin: auto;
  border-radius: 12px;
  border: 4px solid #bd5d58;
  justify-content: center;
  display:flex;
  flex-direction: column;
}
.contactstyle h4 {
  text-align: right;
}

input[type="submit"] {
  background-color: rgba(226, 181, 179, 0.5);
}
input[type="submit"] :hover {
  opacity: 0.5;
}



@media screen and (max-width: 500px) {
  .soup h1 {
    font-size: 0rem;
  }

}

@media screen and (max-width: 800px) {


  html {
    font-size: 70%;
    width: 100%;
  }


}
  @media screen and (max-width: 1025px) {



    html {
      font-size: 65%;


    }


  }