 html,
    body {
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #353535;
      font-family: sans-serif;
    }

    .game-container {
      width: 330px;
      height: 330px;
      background-color: #ffdaaf;
      border: 4px solid #ef4444;
      border-radius: 0.75rem;
      position: relative;
    }

    .snake-head {
      width: 20px;
      height: 20px;
      background-color: red;
      border: 1px solid #1a1a1a;
      border-radius: 5px;
      position: absolute;
    }

    .snake-body {
      width: 20px;
      height: 20px;
      background-color: #ff9090;
      border: 1px solid #1a1a1a;
      border-radius: 5px;
      position: absolute;
    }

    .food {
      width: 20px;
      height: 20px;
      font-size: 18px;
      color: #b91c1c;
      position: absolute;
    }
    .foodHighscr{
      box-shadow: 0 0 15px yellow, 0 0 15px white;
    }
    .dpad-btn {
      width: 75px;
      height: 75px;
      background-color: #000;
      border: 2px solid transparent;
      color: white;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .dpad-btn:hover {
      border: 2px solid #41ff0c;
    }

    .dpad-btn:active {
      box-shadow: 0 0 15px blue, 0 0 15px white;
    }
