body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-color);
  transition: background-color 0.3s ease;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--tertiary-text-color) transparent;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-track-piece {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: 2px solid var(--bg-color);
}

html {
  scrollbar-gutter: stable;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-weight: bold;
  font-size: 36px;
  font-family: 'Noto Serif';
}

h2 {
  font-size: 48px;
}

h3 {
  font-family: 'Arial';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: var(--tertiary-text-color);
  padding-left: 16px;
  padding-right: 16px;

}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }
}


* {
  color: var(--primary-color);

}


.flex {
  display: flex;
  align-items: center;
  justify-items: center;
}

.flex-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.mtop-large {
  margin-top: 64px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 169px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #243a31;
  color: #243a31;
  background-color: transparent;
  cursor: pointer;
  transition: scale 0.1s ease, background-color 0.3s ease;
}

.btn:hover {
  scale: 1.04;
}

.btn svg {
  color: #243a31;
  width: 26x;
  height: 26px;
}