@charset "UTF-8";

body{
    margin: 0;
    padding: 0;
    positiion: relative;
    min-width: 197x;   /*中央配置するボックスの横幅*/
    min-height: 197px;  /*中央配置するボックスの縦幅*/
    /* background-color:#00bfff; */
}

.centerMiddle{
    margin: -83px 0 0 -83px;  /*縦横半分をネガティブマージンでずらす*/
    position: absolute;     /*body要素に対して絶対配置*/
    top: 50%;       /*上端を中央に*/
    left: 50%;      /*左端を中央に*/
    width: 197px;   /*横幅*/
    height: 197px;  /*縦幅*/
    /* background-color:#00ff00; */
}
