:root {
  --font-family: "Manrope", 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;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: #fff;
  background-color: #0d42c3;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 40px 20px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: #001437;
  text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 1px #fff, 0 0 3px #fff,
    0 0 4px #fff, 0 0 8px #fff;
  margin-bottom: 40px;
}

@media screen and (min-width: 1428px) {
  .section {
    padding: 40px 120px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
