:root {
  --font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

dl,
dt,
dd,
figure,
p {
  margin: 0;
}

dt,
dd {
  display: inline;
}

dd::after {
  content: "";
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: #4a5565;
  background: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-sct {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-sct {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 375px;
  padding: 50px 11px;
}

.section-title-sct {
  font-weight: 900;
  font-size: 32px;
  text-align: center;
  color: #101828;
  margin-bottom: 30px;
}

@media screen and (min-width: 1440px) {
  .container-sct {
    width: 1440px;
    padding: 100px;
  }

  .section-title-sct {
    font-size: 48px;
  }
}
