main {
  margin: 0 auto;
  background-image: linear-gradient(to bottom, rgb(16, 65, 89), rgba(16, 65, 89, 0.8) 50%), url('../img/contact-background.jpg');
  background-size: cover;
  padding: 15vh 20vw 5vh 20vw;
  color: #ffffff;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 2px;
  text-align: left;
}

article h2 {
  font-size: 2em;
  margin-bottom: 5vh;
  text-align: center;
  font-weight: normal;
}

article h3 {
  font-weight: 500;
  margin-top: 8vh;
  font-size: 1.5em;
  text-align: center;
}

article li {
  margin-bottom: 0.5vh;
}

article .conclusion {
  text-align: center;
}

article b {
  font-weight: 500;
}

article p:has(b) {
  text-align: center;
}

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

.download-btn {
  background-color: #0f4159;
  color: white;
  border: none;
  padding: 10px 16px;
  font-family: "Poppins", sans-serif;
  margin: 0 auto;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
  transition: .2s;
  display: block;
}

.download-btn:hover {
  filter: brightness(70%);
  transition: .2s;
}

@media (max-width: 480px) {
  main {
    padding: 15vh 5vw 5vh 5vw;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 2px;
    text-align: left;
  }

  article h2 {
    margin-bottom: 5vh;
    text-align: center;
    font-weight: normal;
  }

  article h3 {
    font-weight: 500;
  }

  article li {
    margin-bottom: 0.5vh;
  }

  .download-btn {
    background-color: #0f4159;
    color: white;
    border: none;
    padding: 10px 16px;
    font-family: "Poppins", sans-serif;
    margin: 0 auto;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    transition: .2s;
    display: block;
  }

  .download-btn:hover {
    filter: brightness(70%);
    transition: .2s;
  }

  article b {
    font-weight: 500;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  article,
  article * {
    visibility: visible;
  }

  article {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: white;
    color: black;
    font-size: 10pt;
    text-align: justify;
  }

  * {
    background: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    border: none !important;
  }

  @page {
    size: A4;
    margin: 2cm;
  }

  article h2 {
    font-size: 14pt;
    text-align: center;
    margin-bottom: 1cm;
  }

  article h3 {
    font-size: 12pt;
    text-align: center;
    margin-bottom: 0.4cm;
  }

  article ul,
  article ol {
    font-size: 10pt;
  }

  article a {
    color: black;
  }

  p, ul {
    page-break-inside: avoid;
  }
}