html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  background-image: url(images/fundraising-bg.jpg);
  background-position: center;
  width: 100vw;          /* or whatever width you want */
  height: 700px;         /* set the height you want */
  background-size: 100% 100%;   /* stretches to fill the div exactly */
  background-repeat: no-repeat;
}

body {
  font-family: "Open Sans", sans-serif;
  background: none;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundraising-section {
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.fundraising-title {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #333;
}

.fundraising-bar-container {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0 auto 25px;
  overflow: hidden;
  transform: skewX(-15deg);
  border:3px solid black;
}

.fundraising-bar-bg {
  background: #ddd;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
} 

.fundraising-bar-fill {
  background: #c9282d;
  height: 100%;
  width: 0;
  transition: width 2.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.donate-btn {
  display: inline-block;
  background-color: #a61e23;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  margin-top:20px;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.donate-btn:hover {
  background-color: #6f0b0f;
  text-decoration: none;
}

.goal-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.6s ease-in;
  z-index: 2;
}

.percentage-label {
  font-weight: 600;
  z-index: 2;
}

.fundraising-amount {
  font-size: 5.5rem;
  font-weight: 800;
  color: #c9282d;
  margin-top:-20px;
  margin-bottom: 3px;
}

.fundraising-subtext {
  font-size: 1.4rem;
  color: #c9282d;
}

.fundraising-amount,
.fundraising-subtext {
  transform: skewX(-15deg);
  display: block; /* forces each on its own line */
}

.fundraising-bar-fill {
  background: linear-gradient(to right, #c9282d 0%, #e0353b 100%);
}

.goal-label, .percentage-label {
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
  .fundraising-amount { font-size: 3.5rem; }
  .fundraising-subtext { font-size: 1rem; }
  .fundraising-bar-fill { font-size: 1rem; padding: 0 15px; }
}

.fundraising-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  color: #333;
}

.fundraising-intro h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: black;
  margin-bottom: 10px;
  margin-top:0px;
}

.fundraising-intro p {
  margin: 0 auto;
  max-width: 1100px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: .45px;
  color: black;
}