:root {
  --d-blue: #121a3d;
  --blue: #4c54b8;
  --pink: #eebdd2;
  --bg: #eddbe6;
  --white: #fff;
  --l-blue: #c3d3f0;

  --font-family: "Comfortaa", sans-serif;
  --second-family: "Paytone One", 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: var(--d-blue);
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

.section-oow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-oow {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 375px;
  padding: 60px 16px;
}

.section-title-oow {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: var(--blue);
  width: 100%;
  margin-bottom: 48px;
}

@media screen and (min-width: 1440px) {
  .container-oow {
    width: 1440px;
    padding: 80px 160px;
  }

  .section-title-oow {
    font-size: 48px;
    margin-bottom: 64px;
  }
}
