.px {
  font-size: 15px;
}
.em {
  font-size: 1.5em;
}

#example2 {
  color: #dc143c;
}

.bold {
  font-weight:bold;
}


.centering_parent {
    padding: 20px;              /* 余白指定 */
    background-color:  #ddd;    /* 背景色指定 */
    height:2280px;              /* 高さ指定 */
    width: 1000px;               /* 幅指定 */
    position: relative;         /* 位置指定の基準点にする */
}
 
.centering_item {
   background-color: #f2f2f2;   /* 背景色指定 */
   position: absolute;          /* 位置指定 */
   padding: 20px;               /* 余白指定 */
   top:  0;                     /* 位置指定 */
   bottom:  0;                  /* 位置指定 */
   left:  0;                    /* 位置指定 */
   right:  0;                   /* 位置指定 */
   margin:  auto;               /* 中央寄せ */
   width:  700px;               /* 幅指定 */
   height: 1500px;                /* 高さ指定 */
}




