@import url('https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 992px) {
  body {
    width: 95%;
  }
}

@media (min-width: 992px) {  
  body {
    width: 1280px;
  }
}

p, div, span, label, input, button, h1, h2, h3, h4, h5, h6 {
  font-family: "Kodchasan", sans-serif;
}

p, div, span, label, input, button {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

p, h3 {
  margin: 5px 0;
}

p {
  text-align: left;
}

.container {
  display: grid;
  grid-auto-rows: minmax(50px, auto);
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  padding: 10px;
  border: dashed mediumspringgreen;
  border-radius: 10px;
}

.container-nav {
  display: grid;
  grid-auto-flow: column;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}

.button {
  border: thick double chocolate;
  border-radius: 8px;
  background-color: #fff;
  width: fit-content;
  margin: 5px 0;
  padding: 0px 5px;
}

.button:hover {
  background-color: lightsalmon;
  border: thick double sienna;
  transition: background-color 0.5s ease;
}