@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", "Noto Sans", sans-serif;
  font-weight: 500;
  color: #333;
}
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

body {
  background-color: #efefef;
}
.gap {
  width: 100%;
  height: 100px;
}
.wrap {
  width: 1200px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50px;
  background-color: #eeeada;
  box-shadow: 3px 3px 5px 5px #ccc;
  position: relative;
}
h1 {
  font-weight: 700;
  letter-spacing: 20px;
  text-shadow: 3px 3px 3px #999;
}

@media (max-width: 1200px) {
  .wrap {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .wrap {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
    letter-spacing: 10px;
  }
}
