* {
    margin: 0;
    border: 0;
}

body {
    background-image: url(./images/boxing-ring-cartoon-concept-free-vector.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    border: 100px;
}

#header {
    text-align: center;
    font-size: 32px;
    color: white;
    padding-bottom: 100px;
}

.buttonChoice {
    height: 80px;
    font-size: 25px;
    border-radius: 12px;
    width: 33%;
    color: white;
    background-color: cadetblue;
}

#container {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

#scoreCard {
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 20px;
}

#resultBox {
    height: 300px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 30px;
}

.resultCard {
    background-color: grey;
    border-radius: 12px;
    color: white;
}

#scoreBox {
    background-color: cadetblue;
    padding: 25px;
    border-radius: 12px;
    color: white;
}

#resultScreen {
    font-size: 150px;
    position: absolute;
    top: 300px;
    left: 400px;
}

#restartScoreBox {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#restartButton {
    height: 80px;
    font-size: 25px;
    border-radius: 12px;
    width: 350px;
    color: white;
    background-color: black; 
    position: relative;  
}

#playerScore {
    font-size: 50px;
    color: black;
}

#computerScore {
    font-size: 50px;
    color: black;
}

.score {
    font-size: 50px;
    color: black;
    position: relative;
}