html {
  font-family: system-ui, sans-serif;
  background-color: #268300;
  color: #FFFFFF;
}

body {
  margin: 0;
  display: grid;
  align-items: center;
  height: 100vh;
  height: 100dvh;
}

main {
  margin: auto;
  max-width: 600px;
  text-align: center;
  position: relative;
}

a {
  text-decoration:none;
}

.button {
  display       : inline-block;
  border-radius : 10px;          /* 角丸       */
  font-size     : 18pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #ffffff;     /* 背景色     */
  color         : #006600;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 0px solid #000066;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #006600;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}

.title,.logo {
  font-size: 28pt;
  line-height: 1.5;
  color: #FFFFFF;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.text-1 {
  font-size: 16px;
}

.onesignal-customlink-container {
  margin-top: 40px;
}
