html, body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  background: #FFF9F3;
}

.container {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-areas: "pad_l center pad_r";
  grid-template-rows: auto; 
  justify-items: center;
  align-content: center;
}

.image-center {
  grid-area: center;
  width: 75%;
}

.image-center > img {
  object-fit: cover;
  width: 100%;
  max-height: 100%;
}
