* {
    margin: 0;
    padding: 0;
    text-align: center;
}

.main {
    background-color: #f4f6f9;
}

h1 {
    background-color: #081b31;
    color: white;
    height: 5rem;
    line-height: 5rem;
}

.choice {
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice:hover {
    background-color: #081b31;
}

img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.choices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 5rem;
}

.score-board {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    gap: 5rem;
    margin: 5rem;
}

#user, #computer {
    font-size: 4rem;
}

.msg-container {
    margin: 50px;
}

#msg {
    background-color: #081b31;
    color: #fff;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}

.userWin {
    background-color: green;
}

.footer {
    height: 100px;
    margin: 10px;
    padding: 10px;
    border-top-color: black;
    border-top-style: dashed;
}