@media (min-width: 768px) {
  .with-you {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: black;
    color: white;
    padding: 100px 0px;
    box-sizing: border-box;
  }

  .with-you h1 {
    font-size: 3.5em;
    width: 40%;
    text-align: center;
    z-index: 1;
  }
  .with-you p {
    width: 50%;
    text-align: center;
    font-size: 1.25em;
    z-index: 1;
  }
  .with-you a {
    margin-top: 50px;
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #ffd96a;
    color: black;
    z-index: 1;
  }

  .with-you img {
    object-fit: cover;
    object-position: 0% 0%;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
  }
}

@media (max-width: 768px) {
  .with-you {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: black;
    color: white;
    padding: 100px 0px;
    box-sizing: border-box;
  }

  .with-you h1 {
    font-size: 2.5em;
    width: 90%;
    text-align: center;
    z-index: 1;
  }
  .with-you p {
    width: 80%;
    text-align: center;
    font-size: 1.25em;
    z-index: 1;
  }
  .with-you a {
    margin-top: 50px;
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #ffd96a;
    color: black;
    z-index: 1;
  }

  .with-you img {
    object-fit: cover;
    object-position: 50% 0%;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
  }
}
