@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Fjalla+One&family=Indie+Flower&family=Marko+One&family=Paprika&family=Shadows+Into+Light&display=swap');

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

body {
    background-color: #ebe1ed;
    font-family: "Amatic SC"
}

header {
    background-color: white;
    padding: 25px;
}

header h1 {
    text-align: center;
    color: #bd86bb;
}

.scoreboard {
    color: white;
    font-size: 40px;
    border:3px solid white;
    margin: 20px auto;
    text-align: center;
    width: 400px;
    border-radius: 5px;
    padding: 5px 20px;
    position: relative;
}

.badge {
    font-size: 20px;
    background-color: #cd9abc;
    color: #000000;
    padding: 1px 2px;
}

#user-label {
    position: absolute;
    top: 20px;
    left: -25px;
}

#computer-label {
    position: absolute;
    top: 20px;
    right: -25px;
}

.results {
    color: white;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

button {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 10px;
    position: relative;    
}

.action-message p {
    font-family: "Amatic SC";
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}