:root {
  --body: #e8ecf6;
  --bg: #263651;
  --header: rgba(244, 246, 251, 0.3);
  --footer: rgba(244, 246, 251, 0.3);

  --font-family: "Inter", sans-serif;
  --second-family: "Product Sans", sans-serif;
  --third-family: "Afacad", 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(--font-family);
  color: var(--body);
  background: var(--bg);
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-vel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-vel {
  position: relative;
  width: 375px;
  padding: 40px 16px;
}

.section-title-vel {
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 40px;
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .container-vel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    padding: 58px 72px;
  }

  .section-title-vel {
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 56px;
  }
}
