* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Nunito', sans-serif;
  cursor: none; 
}

.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  background-image: url('/cursor.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.background-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(5px);
}

.content {
  position: relative;
  text-align: left;
  padding: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  overflow-y: auto;
  max-height: 80vh;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.title-image {
  height: 40px;
  vertical-align: middle;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

ol {
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

li strong {
  display: block;
  margin-bottom: 0.3rem;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 0.5rem;
}

ul li {
  margin-bottom: 0.2rem;
}

button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: none; 
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

/* Styling for the search container */


/* Styling for the search input */