.stack-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.stack-promo-bg {
  position: absolute;
  background-image: url(https://www-static.spulsecdn.net/images/gameday_promo_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  inset: 40px 0 0 0;
}

.stack-promo-content {
  padding: 20px 20px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text text"
    "button image";
align-items: end;
  color: #3E547D;
  gap: 10px;
}

.stack-promo-text {
  grid-area: text;
  padding-top: 60px;
}

.stack-promo-text h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0D1330; 
}

.stack-promo-text p {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 16px;
}

.stack-promo-img {
  grid-area: image;
}

.stack-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: hsl(144, 66%, 44%);
  border-radius: 4px;
  width: 100%;
  height: 42px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  grid-area: button;
}

.stack-promo-button:hover {
  background-color: hsl(144, 66%, 34%);
}

.stack-promo-desktop-img {
  display: none;
}

.app-buttons {
  display: flex;
  gap: 20px;
padding-bottom: 10px;
  align-self: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.app-buttons img:first-child {
  height: 48px;
}

.app-buttons img {
  max-width: none;
}

@media only screen and (min-width: 460px) {
  
}

@media only screen and (min-width: 560px) {
.stack-promo-content {
grid-template-areas:
    "text text"
    "button image";
}
.stack-promo-text h1 {
    font-size: 26px;
  }
  .stack-promo-text p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 640px) {
  .stack-promo-bg {

  }

  .stack-promo-content {
    grid-template-areas: 
    "text image"
    "button image";
    padding: 0 40px;
  }

  .stack-promo-text {
    margin: 0 auto;
    color: #3E547D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: end;
  }

  .stack-promo-img {
    max-height: none;
  }

  .stack-promo-button {
    max-width: 240px;
  }
}

@media only screen and (min-width: 720px) {
  .stack-promo-bg {
    inset: 28px 0 0 0;
  }
 .app-buttons {
flex-direction: row;
     align-items: center;
  justify-content: flex-start;
  }
}

@media only screen and (min-width: 900px) {
  
  .stack-promo-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .stack-promo-text {
    padding-top: 0;
  }

  .stack-promo-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .stack-promo-text p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 20px;
  }
}
