:root {
  --d-gray: #313131;
  --gray: #565656;
  --l-gray: #c8c8c8;
  --white: #fff;

  --font-family: "Tektur", 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(--white);
  background: var(--d-gray);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-eol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-eol {
  width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-eol {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 375px;
  padding: 60px 32px;
}

.section-title-eol {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  width: 100%;
  margin-bottom: 48px;
}

@media screen and (min-width: 1440px) {
  .container-eol {
    width: 1440px;
  }

  .content-eol {
    width: 1120px;
    padding: 80px 96px;
  }

  .section-title-eol {
    font-size: 48px;
  }
}
