/* normalization */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: clip;
  width: 100%;
}

body {
  display: block;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
}
a {
  text-decoration: none;
}

button {
  border: none;
  padding: none;
  margin: none;
  cursor: pointer;
  appearance: button;
  -webkit-appearance: button;
  background-color: transparent;
}

input {
  background-color: none;
  border: none;
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  border: none;
  background: none;
  box-shadow: none;
  outline: none;
}
ul,
li {
  list-style: none;
}
.wrapper {
  background-color: #fff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}
.scale-root:not(.is-scale-off) .wrapper{
  min-height: 0;
}
textarea {
  resize: none;
  outline: none;
}
.main {
  flex: 1;
}
.container {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  position: relative;
  padding: 0 120px;
}

@media (max-width: 1025px) {
  .container {
    padding: 0 32px;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 24px;
  }
}
