*{
    padding: 0;
    margin: 0;
    font-size: 1em;
}
body, html{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url("../images/bg.jpg");
    background-size: 50%;
    position: relative;
}
#btnplay{
    width: 150px;
    height: 50px;
    border: 2px solid white;
    color: white;
    background: transparent;
    font-family: Arial, sans-serif;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    animation: play 1s 1.5s linear forwards;
    opacity: 0;
}
@keyframes play {
    0%{margin-top: 50px; opacity: 0;}
    100%{margin-top: 0; opacity: 1;}
    
}
#btnplay:hover{
    background: rgba(255,255,255,0.3);
}
.rock,.paper,.scissors{
    position: absolute;
    color: white;
    font-size: 1em;
    font-family: sans-serif;
    width: 30px;
    height: 30px;
    background-size: cover;
    transition: 3s linear;
}
#rock{
    /* border: 1px solid greenyellow; */
}
#paper{
    /* border: 1px solid rgb(78, 47 , 255); */
}
#scissors{
    /* border: 1px solid rgb(255, 47, 47); */
}


#gameTitle{
    font-family: sans-serif;
    color: white;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 15%;
    font-size: 2em;
    animation: title 1s linear forwards;
}
@keyframes title {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
#gameDesc{
    width: 80%;
    margin-left: 10%;
    color: white;
    top: 30%;
    font-family: sans-serif;
    text-align: center;
    position: absolute;
    animation: desc 1s 1s linear forwards;
    opacity: 0;
}
@keyframes desc {
    0%{opacity: 0;margin-top: 50px;}
    100%{opacity: 1;margin-top: 0;}
}
#dark{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.65);
    z-index: 0;
}









#user_choice{
    width: 100%;
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#user_choice>div{
    display: flex;
    width: 50%;
    justify-content: space-around;
}
.userchoice{
    width: 20%;
    /* height: 10%; */
    cursor: pointer;
}
#newCursor{
    position: absolute;
    transform:translate(-50%,-50%);
    width: 30px;
    height: 30px;
    background-size: cover;
    border: 0;
    pointer-events: none; 
    filter: drop-shadow(0px 0px 7px rgb(167, 167, 167));
    z-index: 2;
}
#countDown{
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40%;
    font-size: 12em;
    font-family: sans-serif;
    color: white;
    /* background: rgb(255, 0, 0); */
}
#bot_amount{
    width: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 20%;
    padding-right: 20%;
    height: 100%;
    margin-top: 20%;
}
#bot_amount>*{
    margin-top: 10px;
    width: 20%;
    z-index: 2;
    background: black;
    outline: none;
    border: none;
    color: white;
    box-shadow: inset 0px 0px 10px rgba(255,255,255,0.3);
    padding: 10px;
    opacity: 0;
}
#amt1{
    animation: amt 1s 1s linear forwards;
}
#amt2{
    animation: amt 1s 1.5s linear forwards;
}
#amt3{
    animation: amt 1s 2s linear forwards;
}
@keyframes amt {
    0%{opacity: 0; margin-top: 100px;}
    100%{opacity: 1; margin-top: 10px;}
}



/* conosle start */
#consoleapp{
    position: absolute;
    width: 50px;
    top: 0; right: 0;
    padding: 10px;
    cursor: pointer;
}
#gap{
    margin-top: 30px;
}
#console_top{
    visibility: hidden;
    width: 500px;
    height: 300px;
    position: absolute;
    background-color: black;
    top: 70px; right: 10px;
    border: 1px solid rgb(70, 70, 70);
    border-radius: 10px;
    overflow-y: scroll;
}
#console_top::-webkit-scrollbar{
    background-color: rgb(24, 24, 24);
    width: 10px;
}
#console_top::-webkit-slider-thumb{
    background-color: rgb(124, 124, 124);
    border-radius: 50px;
}
#console_header{
    position: fixed;
    width: 500px;
    height: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
    background: rgb(37, 37, 37);
    display: flex;
    justify-content: right;
}
#console_header>div:hover{background: rgb(53, 53, 53);}
#console_header>div{
    transition: 0.2s ease;
    height: 100%;
    width: 10%;
    color: rgb(129, 129, 129);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5em;
    cursor: pointer;
}
#console_text{
    width: 100%;
    background-color: black;
    outline: none; border: none;
}
.console_reply,#console_text{
    color: white; font-family: Consolas; font-size: 0.9em;
    padding: 0.5px 3px 0.5px 3px;

}