@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* { 
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}
body { 
    background: linear-gradient(135deg,#250065 0%, #986dff 100%);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.topC { 
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
#xo {
    width: 300px;
    position: relative;
    
    
}
header{ 
    display: flex;
    justify-content: space-between;
    color:#350091 ;
    font-size: 22px;
    padding: 13px;
    align-items: center;
    border-radius: 5px;
    background-color: white;
    text-align: center;
}
#current { 
    background: linear-gradient(135deg,#350091 0%, #986dff 100%);
    color: white;
    padding: 5px 15px;
    width: 110px;
    border-radius: 7px;
}
.player { 
    width: 124px;
    cursor: pointer;
}
.player:hover { 
    transform: scale(1.05);
}
.game {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
}
.box { 
    width: 96px;
    border-radius: 6px;
    height: 96px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 800;
}
.round {
    text-align: left;
    padding: 12px 30px;
    background-color: white;
    text-align: center;
    border-radius: 6px;
}
.round h1 {
    background: -webkit-linear-gradient(135deg,#350091 0%, #986dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.box p ,#test p,.play-again p {
    background: -webkit-linear-gradient(135deg,#350091 0%, #986dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.box:hover { 
    transform: scale(1.03);
}
#test {
    background-color: white;
    width: 448px;
    height: 60px;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    left: -71px;
    top: 22px;
    position: relative;
}
#test:hover { 
    transform: scale(1.1);
    cursor: pointer;
}
#X span, #O span {
    font-weight: 800;
    font-size: 50px;
}
.vl {
    border-left: 4px solid #6130c296;
    border-radius: 12px;
    height: 30px;
}
.top {
     display: flex;
     flex-direction: column;
     gap: 10px;
}
.play-again {
    width: 699px;
    display: flex;
    position: relative;
    top: 47px;
    justify-content: space-between;
    height: 68px;
    /* gap: 15px; */
    border-radius: 6px;
    opacity: 0;
    align-items: center;
    left: -202px;
    /* left: calc(-50% - 312.5px); */
    background-color: white;
}
.play-again p {
    border-radius: 7px;
    padding: 15px;
    background-color: white;
    font-weight: 800;
    font-size: 20px;
}
button {
    height: 68px;
    background: linear-gradient(135deg,#350091 0%, #986dff 100%);
    border: none;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 700;
    width: 168px;
    border: 1px solid;
    font-size: 19px;
}
button:hover { 
    transform: scale(1.04);
}