:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Luckiest Guy", 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;
  background-color: transparent;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  color: #265560;
  font-family: var(--font-family);
  background: #41afc6;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 32px 16px;
}

.section-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  color: #e5474a;
  text-shadow: 0 4px 0 #265560;
  margin-bottom: 10px;
}

.section-sub-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  color: #265560;
  margin-bottom: 40px;
}

@media screen and (min-width: 1438px) {
  .section {
    padding: 54px 100px;
  }
}
