@font-face {
    font-family: font;
    src: url("assets/Future\ TimeSplitters.otf") format("opentype");
}

body {
    margin: 0;
    padding: 0;
    background-color: #9932CC;
    overflow: hidden;
}

.game-title {
    text-align: center;
    font-size: 100px;
    font-family: font;
}

.container-options {
    display: flex;
    justify-content: center;
}

.rock,
.paper,
.scissor {
    width: 256px;
    height: 256px;
    margin: 0 50px;
    cursor: pointer;
    border: 4px solid #9932CC;
    transition: 1s;
}

.rock {
    background: url('assets/rock.png');
}

.paper {
    background: url('assets/paper.png');
}

.scissor {
    background: url('assets/scissors.png');
}

.active {
    border: 4px solid orange;
    border-radius: 5%;
    transform: scale(1.1);
    transition-duration: 1s;
}

.container-results {
    margin: 30px auto;
    display: flex;
    margin-left: 430px;
    align-items: center;
    font-family: 'Sarabun', sans-serif;
}

.title {
    font-style: italic;
}

.result {
    font-size: 20px;
}

.result>p:nth-child(5) {
    color: orange;
}

.result>p:nth-child(4) {
    color: red;
}

.result>p:nth-child(3) {
    color: #00FF00;
}

.result>p:nth-child(2) {
    color: blue;
}

span {
    color: black;
}

.play {
    display: block;
    padding: 20px 80px;
    background: none;
    font-family: font;
    font-size: 50px;
    border: 5px solid black;
    margin: 0 150px;
    transition-duration: .5s;
    cursor: pointer;
}

.play:hover {
    border: 5px solid orange;
    color: orange;
    transition-duration: .5s;
}

.result-players {
    font-size: 20px;
}

.result,
.result-players {
    cursor: context-menu;
    align-self: flex-start;
}

.player-choice {
    color: blue;
    font-weight: bold;
}

.computer-choice {
    color: red;
    font-weight: bold;
}

.winner-title {
    position: relative;
    top: 50%;
    left: 0%;
    text-align: center;
    font-size: 50px;
}

.winner {
    text-align: center;
    color: orange;
    font-size: 50px;
}