body {
    background-color: black;
    color: #008b8b;
    text-shadow: 5px 0 10px darkolivegreen;
    font-family: 'Century Gothic', 'ITC Avant Garde', monospace;
    font-size: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px;
}

a { 
    text-decoration: 0;
}

a:link {
    color:#008b8b;
}

a:visited {
    color:#333366;
}

a:hover {
    color:darkolivegreen;
}

a:active {
    color:white;
}

main {
    width: 500px;
    height: 400px;
    padding: 20px;
    border: double 10px #021b30;
    border-radius: 5px;
    background-image: url(/bg.png);
    box-shadow: 0 0 0 5px #021d33b0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textbox {
    width: 490px;
    height: 390px;
    color: #021b30;
    font-size: 18px;
    background-color: #5d7979;
    border: double 5px #021b30;
    border-radius: 5px;
    opacity: .85;
    padding: 15px;
    overflow-x: scroll;
    text-shadow: none;
}

nav {
    padding: 10px;
}

span.emphasis {
    color:#333366;
    text-shadow: 2px 0 #021b30;
}