body{
    background-color: black;
    background-image: url(bg.png);
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}
div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px;
}
div p{
    font-family:'Courier New', Courier, monospace
}
img{
    height: 500px;
    
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
a {
    text-decoration: none;
    color: gray;
}
a:hover{
    color: white;
    text-decoration: dotted;
}
#table{
    display: table;
    padding: 5px;

}

td a{
    display:table-cell;
    border: solid;
    padding: 20px;
    border-width: 1px;
    border-radius: 10px 0px 0px 0px;
}
td a:hover{
    background-color: white;
    color: black;
    cursor:pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

button{
    padding-left: 20px;
    padding-top: 10px;
    background-color: transparent;
}