* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #212121;
    color: #fff;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    background: #313131;
    padding: 15px 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.choices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-size: 5rem;
}

.choice {
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: .3 ease-in-out;
    margin: 0 10px 0 10px;
}

.user-score,
.computer-score,
.result {
    margin-top: 10px;
    text-transform: capitalize;
    font-size: 2rem;
}

.result {
    padding: 5px 10px;
    margin: 10px 5px 0 5px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}