body {
    background-image: url(wallpaper.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: auto;
}

* {
    cursor: url("Cursor.cur"), pointer;
    font-family: 'Minecraft';
}

header {
    text-align: center;
    text-decoration: none;
}

h1{
    color: rgb(22, 119, 22);
}

button {
    border: transparent;
    background-color: transparent; 
    font-size: 1em; 
    box-shadow: transparent;
}

.bonus {
    background-color: rgba(255, 255, 255, 0.342); 
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.lava {
    height: 10%;
    position: absolute;
    top: 10%;
    left: 5%;
    transform: translateY(-50%);
}

.lava button{
    height: 100%;
    width: 100%;
}

.lava button img{
    height: 100%;
    width: 100%;
}

main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: ridge;
    border-radius: 5px;
    border-color: transparent;
    
}

a {
    color: rgb(1, 79, 148);
    text-decoration: none;
}

footer {
    text-align: center;
    position: fixed;
    height: 50px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
}

.bonus1, .bonus2, .bonus3 {
    height: 5%;
    width: 50%;
    position: relative;
    left: 25%;
}

.bonus1 button, .bonus2 button, .bonus3 button{
    height: 100%;
    width: 100%;
}

.bonus1 button img, .bonus2 button img, .bonus3 button img{
    height: 100%;
    width: 100%;
}

/* alert-Box */
#modalContainer {
    background-color:rgba(0, 0, 0, 0.3);
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:10000;
}

#alertBox {
    position:relative;
    width:300px;
    min-height:100px;
    margin-top:50px;
    border:1px solid #666;
    background-color:#fff;
    background-repeat:no-repeat;
    background-position:20px 30px;
}

#modalContainer > #alertBox {
    position:fixed;
}

#alertBox h1 {
    margin:0;
    font: 'Minecraft';
    background-color:#3073BB;
    color:#FFF;
    border-bottom:1px solid #000;
    padding:2px 0 2px 5px;
}

#alertBox p {
    font:0.7em 'Minecraft';
    height:50px;
    padding-left:5px;
    margin-left:55px;
}

#alertBox #closeBtn {
    display:block;
    position:relative;
    margin:5px auto;
    padding:7px;
    border:0 none;
    width:70px;
    font:0.7em 'Minecraft';
    text-transform:uppercase;
    text-align:center;
    color:#FFF;
    background-color:#357EBD;
    border-radius: 3px;
    text-decoration:none;
}

/* unrelated styles */

#mContainer {
    position:relative;
    width:600px;
    margin:auto;
    padding:5px;
    border-top:2px solid #000;
    border-bottom:2px solid #000;
    font:0.7em 'Minecraft';
}


code {
    font-size:1.2em;
    color:#069;
}

#credits {
    position:relative;
    margin:25px auto 0px auto;
    width:350px; 
    font:0.7em 'Minecraft';
    border-top:1px solid #000;
    border-bottom:1px solid #000;
    height:90px;
    padding-top:4px;
}

#credits img {
    float:left;
    margin:5px 10px 5px 0px;
    border:1px solid #000000;
    width:80px;
    height:79px;
}

.important {
    background-color:#F5FCC8;
    padding:2px;
}

code span {
    color:green;
}