body, html {
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
}

#game {
    width: 100%;
    height: 100%;
    text-align: center;
}

.peg {
    border-radius: 100%;
}

.pbl, .pbs {
    margin: 0 auto;
}

.pbl>.peg {
    display: inline-block;
    height: 100px;
    width: 100px;
    margin: 10px;
}

.pbs>div {
    display: inline-block;
    width: auto;
    border-radius: 110px;
    padding-right: 15px;
    padding-left: 15px;
    height: 61px;
}

.pbs>div>.peg {
    display: inline-block;
    height: 50px;
    width: 50px;
    margin: 5px;
}

.hnt {
    display: inline-block;
    position: relative;
    top: -14px;
    padding: 0;
    width: 40px;
    height: 40px;
}

.hnt>.peg {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: 0;
}

#side {
    position: fixed;
    top: 0;
    left: 0;
}

#side>.peg {
    transition: padding 0.5s ease;
    width: 50px;
    height: 50px;
    margin: 10px;
}

#side>.peg:hover {
    transition: padding 0.2s ease;
    padding: 3px;
}

.pbs {
    animation: appear 0.5s ease;
}

.pbs>div>.peg {
    animation: appurr 0.5s ease;
}

@keyframes appear {
    0% {
        position: relative;
        bottom: 64px;
        height: 0px;
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        height: 64px;
        position: relative;
        bottom: 0px;
    }
}

@keyframes appurr {
    0% {
        padding: 25px;
    }
    100% {
        padding: 0px;
    }
}

@keyframes apparr {
    0% {
        padding: 15px;
    }
    100% {
        padding: 0px;
    }
}

#btm {
    height: 64px;
}

::-webkit-scrollbar {
    display: none;
}

#status {
    position: fixed;
    top: 0;
    right: 0;
    text-align: right;
}

#time, #turns {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2em;
    margin: 8px;
}

.stat {
    position: absolute;
    font-size: 2em;
    font-family: sans-serif;
    font-weight: bold;
    margin-top: 13px;
}

.stat>span {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 0.5em;
}

#settings {
    position: fixed;
    bottom: 0;
    right: 0;
}

#setbtn {
    width: 55px;
    height: 25px;
    background-color: transparent;
    border: 3px solid black;
    margin: 8px;
    border-radius: 25px;
}

#setcrc {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 3px solid black;
    margin: 2px;
}

@media (max-width:740px) {
    #game {
        zoom: 0.5;
    }
    #status, #settings {
        display: none;
    }
}