body {
    background-color: #000;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/stuff/demo/images/mainmenu_bkgd.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #00ff00;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    cursor: crosshair;
}

.menu {
    text-align: center;
}

.menu-item {
    margin: 10px 0;
    cursor: crosshair;
    transition: transform 0.1s;
}

.menu-item.selected {
    color: #fff;
}

.menu-item:hover, .menu-item.selected {
    transform: scale(1.1);
}

.crosshair {
    cursor: url('crosshair.cur'), auto;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #111;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #00ff00;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    color: #00ff00;
    font-family: monospace;
}

.modal-content h2, .modal-content p, .modal-content a {
    text-align: center;
}

.modal-content a {
    color: #00ff00;
    text-decoration: underline;
}

.close-button {
    color: #00ff00;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: crosshair;
}

.close-button:hover, .close-button:focus {
    color: #fff;
    text-decoration: none;
    cursor: crosshair;
}
.content-wrapper {
    text-align: center;
}

.headline {
    margin-bottom: 20px;
}

.headline h2 {
    font-size: 2.5em;
    margin: 0;
    color: #00ff00; /* Tomato color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.headline h2:hover {
    transform: scale(1.1);
    text-shadow: 2px 2px 8px rgb(0, 0, 0);
}

.headline p {
    font-size: 1.2em;
    margin: 10px 0;
    color: #00ff00; /* SteelBlue color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}