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

img {
    width: 300px;
    height: auto;
}

body {
    font-family: "Bahnschrift", sans-serif;
    color: #fff;
    background: linear-gradient(#2b1055, #7597da);
    min-height: 100vh;
}

h1 {
    padding: 20px;
    text-align: center;
    height: 70px;
    background-color: #fff;
    color: #333;
    text-transform: uppercase;
}

.score-board {
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    width: 250px;
    font-size: 40px;
    text-align: center;
    position: relative;
}

.badge {
    background-color: red;
    color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 25px;
    font-size: 20px;
    padding: 3px;
}

#user-label {
    left: -25px;
}

#computer-label {
    right: -25px;
}

.result p{
    background-color: #fff;
    color: #2b1055;
    font-weight: bolder;
    padding: 10px;
    width: fit-content;
    margin: 0px auto;
    border-radius: 10px;
    font-size: 40px;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

.choices{
    text-align: center;
}
.choice{
    display: inline-block;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#message p{
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}