body {

background:#050505;

color:#e70000;

font-family:"Courier New", monospace;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

}

/*エラー箱*/

.error-box {

border:2px solid #ff3333;

padding:40px;

width:500px;

box-shadow:
0 0 20px #ff3333;

}

/*エラー箱リンク処理*/

.error-box a {

    color:#00ff99;

    text-decoration:none;

    font-size:20px;

    display:block;

    margin-top:30px;

    text-shadow:
    0 0 10px #00ff99;

}

/*エラー箱リンクの上にマウスを置いたとき*/

.error-box a:hover {

    color:white;

    text-shadow:
    0 0 15px #00ff99;

}

/*タイトル点滅(エラー)*/

h1 {

animation:errorblink 1s infinite;

}


@keyframes errorblink {

50% {

opacity:0.3;

}

}

/*無効化されたオプション*/

.disabled {

color:#666;

text-decoration-color:#ff3333;

}