* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
/*     background-color:  #1A1D24; */
    background-color: #0d1117;
    font-family: monospace;
    color: #00B3A4;
}
body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
    
}
.game-name {
    font-size: 3rem;
    text-align: center;
    
}
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3rem;
    gap: 20px;
}
.player-move-container {
    display: flex;
    gap: 20px;
}
.choose-move {
    height: 12rem;
    border-radius: 50%;
    border: 5px solid white;

    &:hover {
        border: 5px solid  #00F2E5;
        box-shadow: 0px 0px 15px  #00F2E5;
    }
}
.btn {
    font-size: 2rem;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #00F2E5;
    
}
.score {
    border: 2px solid #00F2E5;
    padding: 10px 5px;
    border-radius: 5px;
}

/* new feature */
.player-move , .computer-move{
    height: 8rem;
    border-radius: 50%;
    border: 2px solid white;
}
.player-move {
    position: relative;
    left: 34px;

}
.computer-move {
    position: relative;
    right: 34px;

}
.show-move-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    gap: 5px;
}
.show-move-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    
    
}

@media (max-width:525px) {
    html {
        font-size: 65%;
    }
}

@media (max-width:375px) {
    html {
        font-size: 50%;
    }

}

