body {
  background: #e8ebff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

img {
  height: 75vh;
  border-radius: 5px;
  margin: 30px 0;
  box-shadow: 3px 3px 15px rgba(0,0,0,0.1);
}

img:first-child {
  margin-right: 30px;
}

@media screen and (max-width: 980px) {
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  img {
    margin: 10px;
    height: 100%;
    width: 60vw;
  }

  img:first-child {
    margin-right: 0;
  }

  #rsvp-button {
    padding: 30px;
  }
}

@media screen and (max-width: 500px) {
  img {
    margin: 10px;
    height: 100%;
    width: calc(100% - 20px);
  }
}
