.container {
  display: flex;        /* Flexboxを有効にする */
  align-items: center;  /* 垂直方向（縦）に中央揃え */
  justify-content: center; /* 水平方向（横）に中央揃え（必要なら） */
  height: 100vh;        /* ビューポートの高さ全体に広げる */
}

img {
  max-width: 100% !important;
  width: auto !important;
  height: auto;
  display: block;
}