html{
    width: 100%;
}
body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    background-color: rgb(211, 211, 211);
    color: black;
}

header{
    display: flex;
    justify-content: center;
    width: 100%;
}

#game{
    display: flex;
    justify-content: center;
    width: 100%;
}

#content{
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    position: fixed;
    bottom: 0;
    width: 100%;
}