body {
    font-family:'Courier New', Courier, monospace;
    background-color: #1a1a1a;
    color: #c7c7c7;
    display: flex;
    justify-content: center;
    align-items: "center";
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: "center";
    width: 350px;
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #ff4444;
}

#story {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
}

button {
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 4px;
    border: none;
    background-color: #444;
    color: #c7c7c7;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 035;
}

button:hover {
    background-color: #666;
}