*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

background:#08111d;

color:white;

font-family:Poppins,sans-serif;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

overflow:hidden;

}

.game{

width:1000px;

max-width:95%;

text-align:center;

}

.topbar{

display:flex;

justify-content:space-between;

margin:30px 0;

font-size:26px;

font-weight:bold;

}

#playArea{

position:relative;

height:600px;

border-radius:25px;

background:#111827;

border:2px solid #1e293b;

overflow:hidden;

}

#yamio{

position:absolute;

width:120px;

cursor:pointer;

display:none;

transition:.15s;

}

#yamio:hover{

transform:scale(1.1);

}

button{

margin-top:25px;

padding:18px 35px;

border:none;

border-radius:14px;

background:#7CFF4D;

font-size:20px;

font-weight:bold;

cursor:pointer;

}

button:hover{

transform:scale(1.05);

}

#result{

margin-top:25px;

color:#7CFF4D;

}