@charset "utf-8";
/* CSS Document */

body{  
    margin: 0;
    height: 100vh; /* 画面の高さいっぱいに */
    display: flex;
    justify-content: center; /* 左右中央 */
    align-items: center;     /* 上下中央 */  
}  
.container{
	  display: flex;
    flex-direction: column; /* 要素を縦に並べる */
    align-items: center;    /* 水平方向の中央揃え */
    justify-content: center; /* 垂直方向の中央揃え */
    height: 100vh;          /* 画面全体の高さ */
    text-align: center;     /* テキスト自体のセンタリング */
}
.container img {
   max-width: 100%;        /* 画像のレスポンシブ対応 */
    height: auto;
    margin-bottom: 30px;    /* 画像とテキストの隙間 */
  }
.text{
    color: #474747;
	font-size: 1.5em;
}