* {
    box-sizing: border-box;
  }
  /*css*/

  body {
    margin: 0;
    padding: 0;
    background-color: #121213;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
  }

  h1 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    grid-template-rows: repeat(6, 60px);
    gap: 5px;
  }

  .tile {
    width: 60px;
    height: 60px;
    border: 2px solid #3a3a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
  }

  .tile.filled {
    border: 2px solid #565758;
  }

  .tile.correct {
    background-color: #538d4e;
    border-color: #538d4e;
    color: white;
  }

  .tile.present {
    background-color: #b59f3b;
    border-color: #b59f3b;
    color: white;
  }

  .tile.absent {
    background-color: #3a3a3c;
    border-color: #3a3a3c;
    color: white;
  }

  .keyboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .keyboard-row {
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .key {
    background-color: #818384;
    color: white;
    border: none;
    border-radius: 6px;
    width: 43px;
    height: 58px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
  }

  .key.wide {
    width: 64px;
  }

  .key.correct {
    background-color: #538d4e;
  }

  .key.present {
    background-color: #b59f3b;
  }

  .key.absent {
    background-color: #3a3a3c;
  }

  .message {
    margin-top: 10px;
    font-size: 1.2rem;
  }