body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #F5F5F5;
}


.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-svg {
  width: 55vw; 
  max-height: 100%;
  margin-top: 5vh;
}

.header p {
  font-size:18px;
  width: 70vw; 
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:7vh auto;
}

.download-section {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 20rem;
}

.download-button {
  background-color: #0066FF;
  border: solid 2px #0066FF;
  color: rgb(255, 255, 255);
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
}

.download-button:hover {
  transform: scale(1.03);
}

.download-section p {
  font-size:18px;
  width: 70vw; 
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:7vh auto;
}

/* This page has no horizontal body padding, so neutralize shared full-bleed footer offsets. */
.footer-cards {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.footer-meta {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


  
  /* For tablets and larger devices */
  @media screen and (min-width: 768px) {


    .header p {
      font-size:24px;
      width: 40vw;
    }
    .download-section p {
      width: 40vw; 
      font-size:24px;
    }
    
  }
  
