* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "AdelleSansTHA";
  src: url("../assets/fonts/AdelleSansTHA-Bold.eot");
  src: url("../assets/fonts/AdelleSansTHA-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/AdelleSansTHA-Bold.woff2") format("woff2"),
    url("../assets/fonts/AdelleSansTHA-Bold.woff") format("woff"),
    url("../assets/fonts/AdelleSansTHA-Bold.svg#AdelleSansTHA-Bold")
      format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AdelleSansTHA";
  src: url("../assets/fonts/AdelleSansTHA-Regular.eot");
  src: url("../assets/fonts/AdelleSansTHA-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/AdelleSansTHA-Regular.woff2") format("woff2"),
    url("../assets/fonts/AdelleSansTHA-Regular.woff") format("woff"),
    url("../assets/fonts/AdelleSansTHA-Regular.svg#AdelleSansTHA-Regular")
      format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: AdelleSansTHA;
  background-color: white;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
}

.register-section {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
}

.register-button {
  background-color: #f15e22;
  outline: none;
  color: white;
  padding: 1rem 5rem;
  font-size: 64px;
  border: none;
  font-family: AdelleSansTHA;
}
.register-term {
  font-size: 18px;
  color: black;
  text-align: center;
}
.map-section {
  margin: 6rem;
  background-color: white;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.map-section h2 {
  font-size: 64px;
  color: #f15e22;
}
.zone-text {
  width: 90%;
  margin: 5rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.zone-text div {
  font-size: 20px;
  font-weight: bold;
  width: 219px;
  height: 70px;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.zone-text div:nth-child(1) {
  background-color: #972016;
}
.zone-text div:nth-child(2) {
  background-color: #163b0c;
}
.zone-text div:nth-child(3) {
  background-color: #dae05f;
  color: #000;
}
.zone-text div:nth-child(4) {
  background-color: #531036;
}
.zone-text div:nth-child(5) {
  background-color: #ebb0a7;
}
.zone-text div:nth-child(6) {
  background-color: #16164c;
}
.zone-text div:nth-child(7) {
  background-color: #1c75ba;
}

.footer-section {
  display: flex;
  justify-content: center;
}

.footer-section img {
  width: 50%;
}

@media only screen and (max-width: 800px) {
  .register-button {
    padding: 0.75rem 3rem;
    font-size: 30px;
  }
  .register-term {
    font-size: 14px;
  }
  .map-section {
    margin: 1rem;
    padding: 1rem;
    gap: 1rem;
  }
  .map-section h2 {
    font-size: 34px;
  }
  .zone-text {
    width: 90%;
    margin: 1rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
