:root {
  --font-family: "Comfortaa", sans-serif;
  --second-family: "Titan One", sans-serif;
  --third-family: "Inter", sans-serif;
  --font3: "Albert Sans", sans-serif;

  --d-purple: #3c0074;
  --purple: #821fe0;
  --yellow: #ffea00;
  --white: #fff;
}

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;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--white);
  background: var(--purple);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-lpb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-lpb {
  position: relative;
  width: 375px;
  padding: 80px 16px;
}

.section-title-lpb {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: var(--yellow);
  text-shadow: -4px -4px 0 var(--d-purple), 4px -4px 0 var(--d-purple),
    -4px 4px 0 var(--d-purple), 4px 4px 0 var(--d-purple),
    0px -4px 0 var(--d-purple), 0px 4px 0 var(--d-purple),
    -4px 0px 0 var(--d-purple), 4px 0px 0 var(--d-purple);
  margin-bottom: 40px;
}

@media screen and (min-width: 1440px) {
  .container-lpb {
    width: 1440px;
    padding: 80px 160px;
  }

  .section-title-lpb {
    font-size: 48px;
  }
}
