.webgl-game{
    margin-top: 30px;
    border-radius: 12px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.help{
    margin: 15px;
}

.help p{
    font-weight: 500;
}

.help a{
    margin: 0px;
}

.only-on-mobile{
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.only-on-mobile p{
    margin: 5px;
    padding: 10px;
    background-color: rgb(80, 80, 80);
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    max-width: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1000px) {
    .content{
        display: none;
    }
    .only-on-mobile{
        display: flex;
    }
}


@media screen and (max-width: 600px) {
    footer{
        position: fixed;
        bottom: 0;
    }
    .only-on-mobile{
        height: 80vh;
    }
}