:root {
  --background: #121212;
  --text-color: #fff;
  --accent-color-1: #ffb400;
  --accent-color-2: #00d1a5;

  --font-family: "Bowlby One SC", sans-serif;
  --second-family: "Chakra Petch", sans-serif;
  --third-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
}

img {
  display: block;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--second-family);
  color: var(--text-color);
  background: var(--background);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-scm {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-scm {
  position: relative;
  width: 375px;
  padding: 40px 20px;
}

.section-title-scm {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
  color: var(--accent-color-1);
  margin-bottom: 28px;
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .container-scm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    padding: 75px 80px;
  }

  .section-title-scm {
    margin-bottom: 34px;
  }
}
