<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Style buttons */
.wrapper {
    text-align: center;
  }
  
  .downloads-btns {
    display: inline-block;
  }
  
  .download-btn {
    background-color: #2d3436;
    border-radius: 44px;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 12px;
    margin: 20px 10px;
    display: inline-block;
    text-transform: none;
    transition: 0.2s;
  }
  
  .download-btn:hover {
    transform: scale(0.96);
  }
  
  .downloads-container {
      display: flex;
      justify-content: center;
      align-items: center;
      /* height: calc(100vh - 120px); */
      height: max-content;
      background-image: url("../img/RegistrationFooter.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  }

  @media only screen and (max-height: 720px) and (max-width:425px){
    .downloads-box {
      margin-bottom: 5rem !important;
    }
  }

  @media only screen and (min-height: 666px) {
    .downloads-container {
      height: calc(100vh - 60px);
    }
  }

  .downloads-box {
    width: 520px;
    background: #ddd;
    height: max-content;
    padding: 40px 40px;
    margin: 1rem;
    border-radius: 10px;
    border: 2px solid #2d3436;
  }
  
  .downloads-box h2 {
    font-size: 16px;
  }
  
  .downloads-box p {
    padding-top: 8px;
    font-size: 12px;
    text-align: left;
  }</pre></body></html>