/* Custom styles for the MiniWord add-to-homescreen site */

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Ensure full height and width */
html, body {
  height: 100%;
  width: 100%;
}

/* Main container styles */
main {
  min-height: 100vh;
  width: 100%;
}

/* Center content */
.absolute.inset-0.flex.items-center.justify-center {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Add some basic responsive design */
@media (max-width: 768px) {
  .w-screen {
    width: 100vw;
  }
  
  .h-screen {
    height: 100vh;
  }
} 