header {
    font-size: 7vmin;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: black;
    color: white;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

body {
    background-color: rgb(130, 164, 193);
    text-align: center;

}

.choices {
    margin-top: 15vmin;
    justify-content: center;
    flex-wrap: wrap;
}

main {
    text-align: center;

}


button {
    font-size: 2rem;
    margin: 4vmin;
    padding-left: 7vmin;
    padding-right: 7vmin;
    padding-top: 3vmin;
    padding-bottom: 3vmin;
    cursor: pointer;
    background-color: lightgray;
    border: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;

}

#result {
    font-size: 6vmin;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;

}

button:hover {
    background-color: rgb(0, 0, 0);
    color: white;
}

#player-score,
#computer-choice {
    font-size: 38px;
    margin-top: 10px;
    font-family: Arial, sans-serif;

}


#computer-score {
    color: rgb(146, 130, 8);
    font-size: 38px;

}

* {
    margin: 0;
    padding: 0;
    font-weight: bold;
}