* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color:rgb(36, 30, 75);
}

.container {
    width: 1140px;
    margin: 0 auto;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}
.title{
    font-size: 45px;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}
.result{
    display: flex;
    justify-content: space-between;
}
.your-result, .computer-result{
    text-align: center;
    font-size: 20px;
    color: #fff;
}
.green-text{
    font-size: 40px;
    color: #fff;
    text-align: center;
}
.red-text{
    font-size: 40px;
    /* color: red; */
    text-align: center;
}
.one-game-result{
    margin: 0px 0;
}

.game-buttons{
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.game-btn{
    border-radius: 50%;
    background: none;
    box-shadow: 0px 0px 20px rgba(120, 245, 239, 0.5);
}
.game-btn :hover{
    box-shadow: 0px 0px 50px rgba(26, 117, 3, 0.5);
}
.game-btn img{
    width: 150px;
    border-radius: 50%;
}
.game-now-result{
    display: flex;
    justify-content: center;
}
.your-now-result, .computer-now-result{
    background-color: #000;
    margin: 10px 50px;
}
.your-now-result img,  .computer-now-result img{
    border-radius: 50%;
}
.your-now-result h3, .computer-now-result h3{
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.restart-btn{
    display: flex;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #888;
    background-color:darkred;
    color: #fff;
    font-weight: bold;
}
