@font-face{
    font-family: 'Sixtyfour';
    src: url('../fonts/Sixtyfour.ttf')
}

body{
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: rgb(36,18,0);
    background: linear-gradient(127deg, rgba(36,18,0,1) 0%, rgba(121,64,9,1) 35%, rgba(221,135,0,1) 100%);
    font-family: 'Sixtyfour', sans-serif;
    min-height: 100vh;
}

#loading{
    margin: auto;
    padding: 100px 0;
    width: 50%;
    text-align: center;
    color: white;
}

#unsupported{
    display: none;
    margin: auto;
    padding: 100px 0;
    width: 50%;
    text-align: center;
    color: #ff5d5d;
}

#error{
    display: none;
    margin: auto;
    padding: 100px 0;
    width: 50%;
    text-align: center;
    color: red;
}

#game{
    position: fixed;
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}