/* RESET STYLES*/
*, *::before, *::after {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, select, label, button, picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
a img {
  border: 0;
}
img, picture, svg, video, canvas {
  border: 0;
  max-width: 100%;
}
a{
  text-decoration: none;
}
img, picture, svg, video, canvas,
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* GENERAL STYLES, TEXT FORMATTING AND  TYPOGRAPHY */
@font-face {
  font-family: 'presentbold_condensed';
  src: url('../fonts/present_condensed_bold-webfont.woff2') format('woff2'),
       url('../fonts/present_condensed_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font: normal 16px "Roboto", sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 95%;
  max-width: 1400px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.align-center {
  text-align: center;
}

.white,
.white:active,
.white:visited,
.white a,
.white a:active,
.white a:visited {
  color: #fff;
}

.green {
  color: #006100;
}

.blue {
  color: #0D2549;
}

.uppercase {
  text-transform: uppercase;
}

.headline,
.subheadline,
.quote.alt {
  font-family: 'presentbold_condensed', sans-serif;
}

.headline {
  font-size: 7.25rem;
}

.subheadline {
  font-size: 4.34375rem;
  line-height: 1;
}

.quote {
  margin-bottom: 5rem;
  font-family: 'Arial', "Roboto", sans-serif;
  font-size: 2.6875rem;
  font-weight: 700;
}

.quote.alt {
  font-size: 4.0625rem;
}

.quote .bigger {
  font-size: 4.375rem;
}

.quote-author {
  font-size: 2rem;
}

.amazon-block-text {
  font-size: 1.625rem;
  color: #000;
}

.main-text {
  padding-left: 2rem;
  margin-bottom: 2rem;
  font-size: 1.375rem;
  line-height: 1.5;
}

/* HEADER */
.no-webp .header {
  background: transparent url(../img/bg-header.jpg) no-repeat center center;
}

.webp .header {
  background: transparent url(../img/bg-header.webp) no-repeat center center;
}

.header {
  padding: 2% 1.5%;
}

/* QUOTE */
.green-birds-back,
.author-quote {
  padding: 10% 2% 6% 2%;
}

.green-birds-back {
  background: #007A00 url(../img/bg-green-with-birds.png) no-repeat center top;
  background-size: contain;
}

/* MAIN */
.main {
  padding: 5.5% 2%;
}

.book-container {
  margin-right: 14%;
}

.amazon-block {
  padding: 2rem 1rem;
  max-width: 30.375rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  background-color: #E8EAE8;
  border-radius: 14px;
}

.logo-amazon-kindle {
  width: 54%;
  margin-top: 18px;
  margin-bottom: 18px;
}

.btn-green {
  padding: 0.5rem;
  border-radius: 7px;
}

.btn-green,
.green-back {
  background-color: #007A00;
}

/* FOOTER */
.webp .footer {
  background: transparent url(../img/bg-footer.webp) no-repeat center top;
}

.no-webp .footer {
  background: transparent url(../img/bg-footer.jpg) no-repeat center top;
}

.footer {
  background-size: cover;
}

.footer-text {
  padding: 8% 2%;
  font-size: 1.875rem;
}

@media (max-width: 1500px) {
  html, body {
    font-size: 14px;
  }

  .none-1500 {
    display: none;
  }
}

@media (max-width: 1200px) {
  html, body {
    font-size: 12px;
  }

  .quote.alt {
    font-size: 3.75rem;
  }
}

@media (max-width: 995px) {
  html, body {
    font-size: 10px;
  }

  .flexbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .book-container {
    width: 65%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .quote br {
    display: none;
  }
}

@media (max-width: 768px) {
  html, body {
    font-size: 8px;
  }

  .main-text {
    font-size: 14px;
  }

  .main-text br,
  .footer-text br {
    display: none;
  }

  .quote .bigger {
    display: block;
  }
}