html {
    margin: 0;
    padding: 0;
    background-color: #282A3A;
  }

  h1{
    color: red;
    text-align: center;
  }
.container {
    background-color: #282A3A;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

input{
    width: 100px;
    height: 100px;
    font-size: 50px;
    text-align: center;
    background-color: #282A3A;
    border: 1px solid red;
    color: red;
}

  .game {
    display: grid;
    background-color: #282A3A;
    width: 300px;
    height: 300px;
    grid-template-columns: auto auto auto auto;
  }

  input:hover{
    background-color:white;
  }
  button{
    width: 100px;
    height:50px;
    text-align: center;
    font-size: 15px;
    position: relative;
    bottom: -50px;
    background-color: #282A3A;
    border: 3px solid red;
    color: red
  }
  
  button:hover{
    background-color: white;
  }