@font-face {
  font-family: 'BunnyFont';
    src: url('BunnyFont.ttf') format('truetype');
}


/* ADD THIS BELOW */
h1, h2 {
  font-family: 'BunnyFont';
}

p {
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background-color: #0f0f0f;
  color: #f5f5f5;
  font-family: Arial, sans-serif;

  /* subtle dot texture */
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

button {
  background: none;
  border: 1px solid #555;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'BunnyFont'; /* 👈 use your font here */
  font-size: 1rem;
  transition: all 0.3s ease;
}

button:hover {
  border-color: #8fa8ff;
  color: #8fa8ff;
}
