@font-face {
    font-family: Crystal;
    src: url(../fonts/Crystal.ttf);
}
html {
    cursor: url("../images/blue-pickaxe-20x20.png") 3 3, auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; 
}
#overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: lightgray;
    opacity: .5;
    visibility: visible;
    z-index: 1;
    text-align: center;
    cursor: pointer;
}
#overlay-message {
    padding-top: 20%;
    font-size: 2em;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 1;
    opacity: 2;
    -moz-text-size-adjust: auto;       
}


body {
    position: absolute;
    background: url("../images/cave.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    /*background-image: url("../images/hexbg.png");
    */


}
#title {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color:  rgb(6, 192, 224);
    color: white;
    text-align: center;
    font-family: Crystal, Arial, Helvetica, sans-serif;
    padding: 5px;
    
    font-size: 1.5em;
    background-image: url("../images/blackcracks.jpg");
    background-size: cover;
}

#title-div {

    visibility: hidden;

}
@media only screen and (min-width: 600px) {
    #overlay-message {
        font-size: 4em;         
    }
    #title {
        padding: 8px;
        font-size: 2.5em;
    }
}
@media only screen and (min-width: 768px) {
    #overlay-message {
        font-size: 6em; 
    }
    #title {
        padding: 10px;
        font-size: 3em;
    }
}
#belt-div {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90px;
    background-image: url("../images/blackcracks.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    visibility: hidden;
    border-top: 2px solid black;
    text-align: center;
}
.belt {

    height: 100%;

    display: inline-block;
    margin: 0;
    vertical-align: text-bottom;
    text-align: center;
}
.crystal-button {
    border-left: 2px solid rgb(50,50,50);
    border-bottom: 2px solid rgb(50,50,50);
    border-right: 2px solid gray;
    border-top: 2px solid gray;
    cursor: url("../images/blue-pickaxe-20x20.png") 1 1, auto;
    background: linear-gradient(lightgray,white);
    margin: 10px;
    padding: 5px;
    border-radius: 3px;
}
.crystal-button:active {
    border: 2px solid gray;
    background: linear-gradient(white,lightgray);
}
.crystal-button:focus {
    outline: none;
}
.crystal {
    height: 20px;
    width: 20px;
    margin: 10px;
    padding: 0;
    display: inline-block;
    user-select: none;
    -webkit-user-drag: none;

}
#vertical-line {
    background: black;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    display: none;
}