/*Well, I like to keep things simple, so I'll just use only a single
CSS file :)*/

body {
    background-color: rgb(0, 0, 0);
    background-image: url("img/Background.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

table, th, td {
    border: 3px solid rgb(51, 51, 51);
}

.content {
    max-width: 600px;
    margin: auto;
    background-color: rgba(240, 240, 240, 200);
    height: 100%;
    position: fixed;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    overflow: auto;
}

.blog-redirect {
    text-decoration: none;
    color: rgb(41, 178, 241);
}

#blog-back {
    min-height: 40px;
    min-width: 100px;
    border-radius: 10px;
    border: none;
    background-color: rgb(247, 92, 3);
    color: white;
}

#blog-back:hover {
    min-height: 40px;
    min-width: 100px;
    border-radius: 10px;
    border: none;
    background-color: rgb(187, 69, 0);
    color: white;
}
