/* i suppose here is where i should mess with the box and the background */

h1{
    text-align: center;
    color:white;
}

#skeppicbox{
    display: flex;
    justify-content: center;
    align-items: center;
}   

#skeppic{
    margin: 20px;

}

#skepimg{
    max-width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 10px
}

body{
    background-color: rgb(37, 40, 50);
    font-family: 'Courier New', Courier, monospace;
}

#text{
    background-color: black;
    color: white;
    padding: 10px
}

#game{
    background-color: white;
    color: white;
    max-width: 600px;
    max-height: 500px;
    margin: 3px auto 0px;
    padding: 10px
}

#controls, 
#stats {
    border:1px solid black;
    padding: 5px;
    color: black;
}

#skepstats{
    display: none;
    border: 1px solid black;
    padding: 5px;
    color: white;
    background-color: darkred;
}

.stat{
    padding-right: 10px;
}

button {
    cursor: pointer;
    background-color: rgb(255, 192, 20);
    color: black;
    border: none;
    padding: 10px;
    margin: 5px;
}

button:hover {
    background-color: rgb(255, 160, 0);

}