html {
  scroll-behavior: smooth;
  background-color: #f0f6ff;
}

body {
  position: relative;
  padding: 0 64px;
  max-width: 1440px;
  margin: auto;
  height: 100%;
  overflow-x: hidden;
}

* {
  padding: 0;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  margin: 0;
  box-sizing: border-box;
}

main {
  display: flex;
}

.d_none {
  display: none;
}

button {
  cursor: pointer;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/font/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/font/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@media (max-width: 800px) {
  body {
    padding: 0 16px;
  }

  main {
    flex-direction: column;
    gap: 16px;
  }
}
