* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}


.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

img {
    transition: all .5s;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    width: 100px;
    height: 100px;
    text-align: center;
    cursor: pointer;
}

img:hover {
    transform: scale(1.1) translateY(-5px);
    border :1px solid #ccc;
}

img:active {
    transform: scale(1.1) translateY(0);
    border :5px solid red;
}

.badge {
    font-weight: 400;
    color: #000;
    font-size: 24px;;
}

#user-score{
    color: green;
    font-weight: bolder;
    font-size: 48px;
}

#computer-score{
    color: red;
    font-weight: bolder;
    font-size: 48px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
}   

p {
    font-size: 18px;
    margin-bottom: 20px;
}
