body {
    text-align: center;
    margin: 0;
    width: 100%;
    height: 100%;
  }


#modal {
    position:relative;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#modal .modal_layer {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

#modal .modal_content {
    position: fixed;
    width:300px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #fff;
    border-radius: 3%;
    @media screen and (max-width: 760px) {
        top: 60%;
        width:200px;
        height: 150px;
    }
}

#modal .modal_content >div {
    font-size: 30px;
    padding-bottom: 7%;
    padding-top: 16%;
    text-align: center;
}


#userResult {
    width: 300px;
    margin-right: 5%;
    @media screen and (max-width: 760px) {
        width:150px;
    }

}

#computerResult {
    width: 300px;
    @media screen and (max-width: 760px) {
        width:150px;
    }
}

.Question{
    display: flex;
    justify-content: center;
    margin-bottom: 2%;
}
.Status{
    display: flex;
    justify-content: center;
}

.Status>h3:first-child{
    width: 300px;
    text-align: center;
    padding-right: 5%;
}
.Status>h3:last-child{
    width: 300px;
    text-align: center;
}
.Chose{
    display: flex;
    justify-content: center;
    background-color: rgb(241, 240, 240);
    padding: 3% 0;
    @media screen and (max-width: 760px) {
        padding: 3% 0 40% 0;
    }
}


.Rock{
    width: 60%;
    border-radius: 50%;
}

.Sissors{
    width: 60%;
    border-radius: 50%;
}

.Paper{
    width: 60%;
    border-radius: 50%;
}

.Reset{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2% 10%;
    border-bottom: 1px solid black;

}   

button{
    width: 90px;
    height: 40px;
    font-size: 120%;
}

