

html {
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fffafb;
  color: #4c0519;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1em;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main.module--main {
  display: flex;
  flex-direction: column;
  gap: 2em;
  flex: 1;
}

.module {
  width: 100%;
}

.module--header,
.module--footer {
  width: 100%;
}

.module__content {
  width: 100%;
}

.module--section {
  flex: 1 1 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: #4c0519;
}

h1 { font-size: 3em; line-height: 1.12; }
h2 { font-size: 2.1em; margin-bottom: 1em; }
h3 { font-size: 1.4em; }
p { font-size: 1em; line-height: 1.7; margin-bottom: 0.75em; }

a { color: #be123c; }

.container {
  max-width: 75em; 
  margin: 0 auto;
  padding: 0 1em;
}

.module__inner {
  width: 100%;
}


.module--section > .module__inner {
  padding: 2em 1em;
}



.decoration { display: block; }
.secondary-content { display: block; }


@media (max-width: 768px) {
  .secondary-content { display: none; }
  .decoration { display: none; }
  .offer-introduction__title { font-size: 2em; }
  .module--section > .module__inner { padding: 1.5em 1em; }
}
