
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');


body,html{
    overflow: hidden;
}
body{
    background-color: black;
    text-align: center;
    display: grid;
    place-content: center;
    user-select: none;
}
*{
    user-select: none;
    font-family: 'Oswald', sans-serif;
}
.cp{
    text-decoration: none;
    color: white;
    margin: 0px;
}
.title{
    color: white;
    font-size: 50px;
    margin: 0px;
}
.ver{
    color: white;
}
.loading{
    color: white;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: black;
    display: grid;
    place-content: center;
}
@media (max-width:480px){
    html{
    }
    body{
        background:black;
        display: grid;
        place-content: center;
        width: fit-content;
    }
    .cp, .ver{
        text-decoration: none;
        color: white;
        transform: translate(-50%,-50%);
        position: fixed;
        top: 90%;
        left: 50%;
    }
    .ver{
        top: 85%;
    }
    .start .panel{
        height: 25% !important;
    }
}
.tex{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}
.aimode{
    width: 64px;
    height: 32px;
    background: white;
    border-radius: 14px;
    position: fixed;
    top: 32px;
    cursor: pointer;
}
.aimode span{
    color: white;
    position: absolute;
    width: 100%;
    transform: translate(-32px,-24px);
}
.aimode .icon{
    width: 32px;
    height: 32px;
    background: #48f;
    border-radius: 50%;
    position: relative;
    left: 0px;
    /* float: left; */
    transition: .2s;
}
.active .icon{
    /* float: right; */
    left: 32px;
}
.start{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    position: fixed;
    top: 0px;
    left: 0px;
    display: grid;
    place-items: center;
}
.start .panel{
    width: 60%;
    height: 40%;
    background-color: #111114;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid gray;
    border-radius: 8px;
}
.start .panel button , .btn{
    padding: 8px;
    color: white;
    font-weight: bold;
    background: transparent;
    border: 4px solid gold;
    margin: 8px 0px;
    cursor: pointer;
    color: gold;
    font-size: 24px;
    width: 80%;
    border-radius: 2px;
}
.btn{
    width: 100%;
}
.start .panel button:nth-child(odd){
    border: 4px solid purple;
}

.start .panel button:hover{
    border: 4px solid white;
    color: white;
}
.start .panel .mode{
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.win-screen{
    visibility: hidden;
    background: rgba(0,0,0,.9);
    display: grid;
    place-content: center;
    font-size: 32px;
    color: white;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
}