html {
    position: relative;
    min-height: 100%;
}
body {
    background-color: #F5F5F5;
    margin-bottom: 100px;
}
#mainHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(24, 26, 31);
    text-shadow: 0 1px #808d93, -1px 0 #cdd2d5, -1px 2px #808d93, -2px 1px #cdd2d5, -2px 3px #808d93, -3px 2px #cdd2d5, -3px 4px #808d93, -4px 3px #cdd2d5, -4px 5px #808d93, -5px 4px #cdd2d5, -5px 6px #808d93, -6px 5px #cdd2d5, -6px 7px #808d93, -7px 6px #cdd2d5, -7px 8px #808d93, -8px 7px #cdd2d5;
}
#container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  
}
#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.scoreboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.choices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}
ul {
    list-style-type: none;
}
.rules {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-style: inset;
}
.button {
    font-size: 24px;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    background-color: #87CEEB;
}
.restart {
    display: flex;
    justify-content: flex-end;
}
#restartBtn {
    margin-top: 25px;
    font-size: 15px;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    background-color: rgb(24, 26, 31);
    color: white;
    font-weight: bold;
}
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    font-size: 18px;
    background-color: rgb(24, 26, 31);
    color: white;
}
a {
    text-decoration: none;
    color: white;
}
.score-msgs {
    margin-top: 0px;
}
#playerChoice, #computerChoice {
    font-style: italic;
}