*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Sriracha", cursive;
  font-weight: 400;
  font-style: normal;
}

img {
  border-radius: 20px;
}

.logo{
  color: #ffffff;
  font-family: "Charm", cursive;
  font-weight: 700;
  font-style: normal;
}

.container {
   max-width: 1264px;
   margin: 0 auto;
   justify-items: center;
   align-items: center;
   padding-left: 10px;
}

.grid {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(auto-fit, 1fr);
  padding-top: 5rem;
}

.grid-ta {
  justify-items: center;
  align-items: center;
}

.grid-t {
  display: flex;
  justify-items: center;
  align-items: center;
  width: auto;
  flex-direction: row-reverse;
  grid-column: 1/3;
}

.grid-t-h {
  display: grid;
  justify-items: center;
  align-items: center;
  width: auto;
  flex-direction: row-reverse;
  grid-column: 1/4;
  padding: 1rem;
}

.grid-t-tl {
  justify-items: center;
  align-items: center;
  width: auto;
  padding: 1rem
}

.grid-img {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-column: 1/4;
  grid-template-columns: repeat(auto-fit,minmax(300px , 1fr));
}
.grid-img-item {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

nav{
  background-color: #333;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}

.menu{
  display: flex;
  list-style: none;
  padding-right: 1rem;
}

.menu li {
      margin-left: 20px;
}

.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Srisakdi", cursive;
  font-weight: 400;
  font-style: normal;
}

main{
  padding: 2rem 0;
}

footer{
  background-color: #333;
  color: #ffffff;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 100%;
}

.footer {
  background-color: #333;
  padding: 20px;
  text-align: center;
}
.footer .links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer .links div {
  margin: 0 15px;
}
.footer .links div a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
.footer .social-icons {
  margin: 20px 0;
}
.footer .social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.footer .copyright {
  font-size: 14px;
  margin-top: 20px;
  border-top: 2px solid #4d4c4c;
  padding-top: 10px;
}

/* hamberger */

.Ham-menu {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: 1rem;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {opacity: 0;}

/* Rotate last bar */
.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}



/* for mobile */
@media screen and (max-width: 1000px) {
  .menu {
    display: none;
  }

  .nav-wrapper {
    padding: 1rem;
    height: auto;
    flex-direction: column;
    align-items: flex-start;

  }

  .menu{
    width: 100%;
  }

  .menu li {
    margin: 2rem 0;
    padding-top: 1rem 0.5rem;
  }

  .menu-active {
    display: block;
  }
}

/*for cumputer*/
@media screen and (min-width: 1000px){
  .Ham-menu {
    display: none;
  }
}

/*button*/
a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  color: rgb(165, 167, 57);
  text-decoration: underline;
}

.outline-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #251f16;
  background-color: transparent;
  border: 2px solid #cb923d;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.outline-button:hover {
  color: white;
  background-color: #775d37;
}

.outline-button:active {
  background-color: #1f1b15;
  border-color: #1f1b15;
}

.cr {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,1fr);
  padding-top: 1rem;
}

.cr-item{
  padding: 1rem;
  margin: 0 auto;
}

.copy {
  display: grid;
  grid-template-columns: repeat(auto-fit,1fr);
  padding-top: 3rem;
}


.charm-bold {
  font-family: "Charm", cursive;
  font-weight: 700;
  font-style: normal;
}

nav{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
}