* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    margin-bottom: 20px;
    padding: 20px 0px;
    background-color: whitesmoke;
    text-align: center;
    color: #26547c;
}

body {
    background-color: #26547c;
}

body h2 {
    text-align: center;
    color: whitesmoke;
}

header img {
    display: inline-flex;
    width: 25%;
}

#choicesContainer {
    margin: 50px 20px;
    position: relative;
    text-align: center;
}

.choice {
    display: inline-block;
    height: 150px;
    width: 200px;
    border-radius: 50%;
    margin: 20px 20px;
    transition: all 0.3s ease-in-out;
}

.choice:hover {
    background-color: teal;
}

#rock {
    display: inline-flex;
    border: 3px solid whitesmoke;
}

#paper {
    display: inline-flex;
    border: 3px solid whitesmoke;
}

#scissors {
    display: inline-flex;
    border: 3px solid whitesmoke;
}

#scoreHeader {
    font-size: 30px;
    font-weight: bold;
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0px;
    display: block;
    border: 3px solid whitesmoke;;
    text-align: center;
    position: relative;
    background-color: whitesmoke;
}

#scoreboard {
    display: flex;
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
}

.score {
    margin: 0px auto;
    padding: 20px;
    text-align: center;
    display: inline-block;
}

.score p {
    margin-top: 10px;
    font-size: 24px;
}

#howToWin {
    margin: 100px;
    font-size: 30px;
    text-align: center;
    color: whitesmoke;
}