body {
    font-family: 'Arial', sans-serif;
    background-color: #fef8e6;
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    color: #2b4a62;
  }

  
/* Logo corners - larger size */
.logo-corner {
    position: absolute;
    top: 20px;
    width: 100px;  /* Increase from 60px to 100px */
    height: auto;
  }
  
  
  .logo-corner.left {
    left: 20px;
  }
  
  .logo-corner.right {
    right: 20px;
  } 

  
/* Trademark Logo */
.trademark-logo {
  position: fixed;
  bottom: 5px;
  right: 10px;
  width: 80px;       /* Adjust size as needed */
  height: auto;
  opacity: 0.8;       /* Slight transparency to look like a watermark */
  z-index: 1000;      /* Ensure it stays on top */
}
  
  .game-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .dropzones, .draggables {
    width: 45%;
    min-width: 300px;
  }
  
  .dropzone {
    background-color: #fff3cd;
    border: 2px dashed #ffc107;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    font-weight: bold;
    min-height: 50px;
  }
  
  .draggable {
    background-color: #d1ecf1;
    border: 2px solid #0c5460;
    border-radius: 6px;
    padding: 10px;
    margin: 10px;
    cursor: grab;
    font-weight: bold;
  }
  
  #message {
    margin-top: 20px;
    font-size: 20px;
    color: green;
    font-weight: bold;
  }
  
  button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  @media (max-width: 768px) {
  .logo-corner {
    top: 10px;
    width: 60px; /* smaller on mobile */
  }

  .logo-corner.left {
    left: 10px;
  }

  .logo-corner.right {
    right: 10px;
  }

  .trademark-logo {
    width: 50px;
    bottom: 10px;
    right: 10px;
  }

  h1 {
    font-size: 24px;
  }

  .game-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .dropzones, .draggables {
    width: 90%;
    min-width: unset;
  }

  .dropzone {
    font-size: 16px;
    padding: 8px;
    min-height: 40px;
  }

  .draggable {
    font-size: 16px;
    padding: 8px;
  }

  #message {
    font-size: 18px;
    padding: 10px;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
  }
}
