body {
    background: #000;
    color: lime;
    font-family: monospace;
}
a {
    color: lime;
}
#game {
    padding: 30px 10px;
    border: 2px solid;
    border-top: 40px solid;
    border-color: #444;
    border-radius: 10px;
    position: relative;
}
.controls {
    position: absolute;
    top: -40px;
    left: 30px;
    font-size: 25px;
    color: #000;
    cursor: pointer;
    z-index: 101;
}
#game:after {
    content: 'lurking_wife_quest - bash';
    position: absolute;
    top: -30px;
    left: 50%;
    font-size: 14px;
    color: #000;
    transform: translateX(-50%);
}
.question {
    /*font-size: 24px;*/
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}
#coin-selection {
    padding: 30px 10px;
    border: 2px solid;
    border-top: 40px solid;
    border-color: #444;
    border-radius: 10px;
    position: absolute;
    z-index: 100;
    background: #000;
    width: 100%;
    left: 0;
    top: -40px;
    min-height: calc(100% + 40px);
}
#coin-selection:after {
    content: 'CoinSelection - bash';
    position: absolute;
    top: -30px;
    left: 50%;
    font-size: 14px;
    color: #000;
    transform: translateX(-50%);
}
.coinlist {
    margin-left: 20px;
}
#next {
    margin-left: 20px;
}
@keyframes showhide {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
.answers {
    padding: 0;
    margin: 0;
}
.answers:after {
    content: '';
    width: 12px;
    height: 24px;
    background: lime;
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    margin-left: 20px;
    margin-top: 20px;
}
.answers li {
    display: block;
    line-height: 2em;
    padding-left: 20px;
    padding-right: 20px;
}
.answers li:before {
	content: '> ';
}
.answers li:hover {
    background: lime;
    color: #000;
    cursor: pointer;
}
.result {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.btn-holder {
    padding: 20px;
}
.btn {
    padding: 8px 30px;
}
.btn-primary {
    background: lime;
    color: #000;
    border-radius: 0;
    border-color: lime;
    font-weight: bold;
}
.btn-primary:hover {
    background: #fff;
    color: #000;
}
.form-check-input:checked {
	background-color: lime;
	border-color: lime;
}
.form-check-input {
	background-color: #000;
	border-color: #444;
}
.typewriter {
    margin-left: 20px;
    margin-top: 20px;
    overflow: hidden;
    border-right: .30em solid lime;
    white-space: nowrap;
    animation: typing 4s steps(50, end) forwards, blinking 1.2s infinite;
    width: 0;
}
@keyframes typing {
    from {
        width: 0
    }
    to {
        width: calc(100% - 20px)
    }
}
@keyframes blinking {
    from {
        border-color: transparent
    }
    to {
        border-color: lime;
    }
}
@media (hover: none) {
    .answers li:hover {
        background: inherit;
        color: inherit;
    }
}
