/* dark mode 
visit counter */
*{
    background-color: black;
    color: white;
    text-align: center;
    font-family: "Comic Sans MS",'Times New Roman', Times, serif,cursive,sans-serif;
}
body,header,footer,main{
    display: flex;
    flex: auto;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    padding: 0;
    margin: 0;
}
button,input{
    border: 2px solid honeydew;
    border-radius: 5px;
    font: bold 20px "Comic Sans MS", cursive, sans-serif;
    margin-left: 15px;
    min-width: 100px;
}
img{
    width: 100px;
    height: 100px;
    display: block;
}
.choice button{
    padding: 0;
    margin: 30px;
}
.scores{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
}
footer{
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    height: 50px;
}
main{
    margin-bottom: 55px;
}