/*basic reset*/
* { margin: 0; padding: 0; }
/*adding a black bg to the body to make things clearer*/
body { background: black; color: #00ff00; font-family: courier; }
canvas { display: block; }
a { text-decoration: none; color: inherit; }

.container {
	background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 90%;
    text-align: center;
    bottom: 20px;
    left: 50%;
    padding: 20px;
    transform: translate(-50%, 0);
    border: 1px solid #aaa;
}

.donate {
	background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 20px;
    right:20px;
    text-align: center;
    padding: 20px;
}
