body {
        font-family: "Inter", Arial, sans-serif;
        margin: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        background-color: #f0f4f8;
        background-image: url(imagen.png/is.jpg);
        background-size: cover;
        background-attachment: fixed;
        color: #333;
      }
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgb(1, 1, 1, 0.7);
        padding: 0px 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
      }
      .logo {
        font-size: 25px;
        text-transform: uppercase;
        color: #ffffff;
        font-weight: 700;
      }
      .navigation ul {
        list-style: none;
      }
      .header .navigation ul li {
        float: left;
        position: relative;
      }
      .header .navigation ul li a {
        font-size: 18px;
        color: #ffffff;
        text-decoration: none;
        padding: 20px;
        display: block;
        transition: all 0.2s ease;
      }
      .header .navigation ul li a:hover {
        background-color: #fe615c;
      }
      .header .navigation ul li ul {
        position: absolute;
        right: 0;
        width: 300px;
        background-color: rgba(1, 1, 1, 0.7);
        display: none;
      }

      .header .navigation ul li ul li a {
        font-size: 15px;
        text-transform: capitalize;
      }
      .header .navigation ul li ul li ul {
        position: absolute;
        top: 0;
        right: 300px;
      }
      .header .navigation ul li ul li {
        width: 100%;
      }
      .header .navigation ul li:hover > ul {
        display: initial;
      }
      #toggle,
      .header label {
        display: none;
        cursor: pointer;
      }
      .menu {
        width: 45px;
        height: 35px;
      }
      @media (max-width: 950px) {
        .header label {
          display: initial;
        }
        .header {
          padding: 20px 10%;
        }
        .header .navigation {
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background-color: rgba(1, 1, 1, 0.7);
          display: none;
        }
        .header .navigation ul li {
          width: 100%;
        }
        .header .navigation ul li a {
          padding: 8px 30px 8px 10%;
        }
        .header .navigation ul li ul {
          position: relative;
          width: 100%;
          left: 0;
        }
        .header .navigation ul li ul li {
          background-color: rgba(197, 193, 193, 0.7);
        }
        .header .navigation ul li ul li ul {
          position: relative;
          width: 100%;
          left: 0;
        }
        #toggle:checked ~ .navigation {
          display: block;
        }
      }
      .container {
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        max-width: 700px;
        width: 100%;
        text-align: center;
      }

      .verb-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
      }

      .verb {
        background-color: #4caf50;
        color: white;
        padding: 12px 18px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 18px;
        user-select: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-width: 60px;
        text-align: center;
      }

      .verb:hover {
        transform: scale(1.05);
        background-color: #45a049;
      }

      .verb.dragging {
        opacity: 0.5;
      }

      button {
        background-color: #2196f3;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 20px;
        transition: background-color 0.3s ease;
      }

      button:hover {
        background-color: #1976d2;
      }

      #instructions {
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
        max-width: 700px;
        width: 100%;
      }

      h1,
      h2 {
        font-family: "Poppins", sans-serif;
        color: #2196f3;
      }

      p {
        font-family: "Poppins", sans-serif;
        color: white;
      }

      #start-screen {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        text-align: center;
      }

      #game-container {
        display: none;
      }