body {
    background-image: url("assets/main-background.jpg");

    font-family: 'Martian Mono', monospace;
}

.main-container {
    margin-top: 10%;
    margin-left: 23%;
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(17, 39, 82, 0.8);
    box-shadow: 0px 10px 100px 5px rgba(2, 120, 255, 0.614);
    height: 400px;
    gap: 50px;
    border-radius: 20px;



}

.selections {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    opacity: 0;
    padding: 10px 30px;
    color: white;
    transition: 500ms;
}


.button {
    padding: 10px 20px;
    width: 100px;
    font-size: 2vw;
    border: none;
    background-color: #78bced;
    color: midnightblue;
    font-weight: bolder;
    border-radius: 7px;
}

.selection-1,
.selection-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.winner-results,
.looser-results,
.draw-results {
    font-weight: bolder;
    font-size: 3vw;
}


.winner-results {
    color: rgb(0, 255, 0);

}

.looser-results {
    color: red;

}

.draw-results {
    color: aqua;

}

.selections {
    font-weight: bolder;
    font-size: larger;

}


.your-selection,
.computer-selection {
    font-size: 1.3vw;
    color: #79beee;
}

.your-selection-result,
.computer-selection-result {
    font-size: 1.2vw;
}

.reload-button-div {

    width: 100%;
}


.reload-button {
    width: 100%;
    margin: 0;
}

.buttons-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

button:hover {
    background-color: #2d9be9;
}