body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 20px;
    background-image: url("./bg.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 85%;
    background-color: #000000;
    background-attachment: fixed;
    color: #A2B2C2;
}
main {
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(40, 184, 176, 0.15);
    padding: 30px;
    border-radius: 8px;
    color: #FFF;
	text-shadow: -4px 3px 5px #000, -2px 2px 5px #a0a;
}
h1, h2 {
    text-align: center;
    color: rgb(208, 208, 0);
    text-transform: uppercase;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.5);
}
table th, table td {
    border: 1px solid rgba(40, 184, 176, 0.3);
    padding: 12px;
    text-align: left;
}
table th {
    background-color: rgba(40, 184, 176, 0.3);
    color: #fff;
}
.code-block {
    background-color: #000;
    color: rgb(0, 208, 0);
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    margin: 15px 0;
    border: 1px solid rgb(0, 208, 0);
    overflow-x: auto;
}
.note {
    background-color: rgba(255, 208, 0, 0.1);
    border-left: 5px solid rgb(255, 208, 0);
    padding: 15px;
    margin: 20px 0;
    color: #fff;
}
blockquote {
    font-style: italic;
    color: #ffa;
    border-left: 3px solid rgba(40, 184, 176, 0.5);
    padding-left: 15px;
    margin: 20px 0;
}
hr {
    border: 0;
    height: 1px;
    background: rgba(40, 184, 176, 0.3);
    margin: 40px 0;
}
a:link, a:visited {
    color: rgb(0, 208, 0);
    text-decoration: none;
}
a:hover {
    color: rgb(255, 208, 0);
}
footer {
    text-align: center;
    margin-top: 40px;
    color: rgb(0, 208, 0);
}
.red {
	color: #F00;
}