/* style.css */

/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #1e1b4b, #0f172a);
  color: #f8fafc;
  display: grid;
  place-items: center;
  height: 100vh;
}

/* Container */
.container {
  text-align: center;
  padding: 40px;
}

/* Heading */
h1 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Image styling (class kept exactly as requested) */
.image_to_show_1 {
  width: min(400px, 90%);
  height: auto;
  margin-top: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

