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 {
    margin-bottom: 5vh;
    text-align: center;
    font-weight: normal;
}

article h3 {
    font-weight: 500;
}

article li {
    margin-bottom: 0.5vh;
}

article .conclusion {
    text-align: right;
    font-weight: 500;
}

.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;
}

.regulations-list {
    font-size: 1.2em;
}

@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;
    }

    h1 {
        font-size: 2em;
    }
    
    article h2 {
        margin-bottom: 5vh;
        text-align: center;
        font-weight: normal;
    }
    
    article h3 {
        font-weight: 500;
    }
    
    article li {
        margin-bottom: 0.5vh;
    }
    
    article .conclusion {
        text-align: right;
        font-weight: 500;
    }
    
    .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 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;
      display: inline;
      text-decoration: underline;
    }

    article a:visited{
      color: black;
    }
  
    /* section {
      page-break-inside: avoid;
    } */
  }
