div.splash {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

img.logo {
  margin-top: 60px;
  margin-right: -20px;
}

div.splash img.logo {
  height: 100px;
  width: auto;
}

div.splash img.selfie {
  height: 650px;
  width: auto;
}

@media (max-width: 1000px) {
  div.splash {
    flex-direction: column;
  }

  div.splash img {
    margin: auto;
  }

  div.splash img.logo {
    width: 70%;
    height: auto;
  }

  div.splash img.selfie {
    width: 95%;
    height: auto;
  }

  /* div.splash img.logo {
    height: 85px;
    width: auto;
  }

  div.splash img.selfie {
    width: 450px;
    height: auto;
  } */
}

/* @media (max-width: 767px) {
  div.splash {
    flex-direction: column;
  }

  div.splash img.logo, div.splash img.selfie {
    width: 100%;
    height: auto;
  }
} */