body {
    background-image: url('images/bg.png');
    background-color: rgba(0, 0, 0, 1);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    color: rgb(212, 175, 55);
}

#navbar {
    text-align: right;
    padding: 2px;
    background-color: rgba(0, 0, 0, 0.8);
}

#navbar a:hover {
    color: rgb(255, 255, 255);
}

#navbar a {
    font-size: 20px;
    text-decoration: none;
    color: rgb(212, 175, 55);
}

#header {
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.5);
}

#content {
    margin: 100px 200px 50px 200px;
    padding: 1px 5px 1px 5px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

#content h1{
    background-color: rgba(0, 0, 0, 0.5);
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    display: block;
    position: absolute;
    bottom: 0px;
    padding: 10px 40% 10px 40%;
    text-align: center;
}

a.button {
    padding: 10px 15px;
    border: 1px outset buttonborder;
    border-radius: 10px;
    color: rgb(212, 175, 55);
    background-color: rgb(65, 61, 61);
    text-decoration: none;
    font-size: 20px;
}
a.button:hover {
    background-color: rgb(212, 175, 55);
    color: rgb(0, 0, 0);
}
