
* { 
    box-sizing: border-box;
    padding: 0;
    margin: 0
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100vh;
    background-color: rgb(36, 36, 36);
    color: white;
}
h1{
    font-size: 1.8rem;
    margin: 0 0 4rem 0;
}
.button-choices button{
    position: relative;
    border: 2px solid rgb(141, 181, 255);
    border-radius: 10px;
    margin: 0 .5rem;
    overflow: hidden;
}
.button-choices button::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    width: 65%;
    height: 70%;
    content: '';
    border: 10px solid rgb(36, 36, 36);
    border-radius: 15px;
}
.button-choices button::after{
    position: absolute;
    inset: 0;
    content: '';
    border: 10px solid rgb(36, 36, 36);;
}
.button-choices button img{
    width: 90px;
    height: 80px;
}
.reset-game{
    visibility: hidden;
    width: 330px;
    height: 40px;
    font-size: 1.4rem;
    background-color: rgb(36, 36, 36);
    color: white;
    border: 2px solid rgb(141, 181, 255);
    margin: 1rem 0 0 0;
    border-radius: 10px;
}
.reset-game.active{
    visibility: visible;
}
.button-choices button:hover, .reset-game:hover{
    cursor: pointer;
    border-color: rgb(0, 102, 255)
}
#display-result{
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 340px;
    height: 150px;
    color: white;
    background-color: #131313;
    border: 4px dotted rgb(255, 255, 255);
    line-height: 1rem;
    margin-top: 1rem;
}
#display-result.active{
    visibility: visible;
}
#display-result h2 {
    color: rgb(141, 181, 255)
}
.green{
    color: rgb(0, 235, 0) !important
}
.red{
    color: rgb(240, 0, 0) !important
}
.score-board{
    width: 320px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .2rem
}
.score-board h3 span{
    padding: 0 .2rem;
    font-size: 1.4rem
}

