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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-image: url('/bg.jpg'); /* Replace with your background image URL */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

section {
  margin: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

#tokenomics {
  text-align: center;
}

#tokenomics canvas {
  width: 250px; /* Reduce size of the tokenomics chart */
  height: 250px;
  margin: 0 auto;
}

#contract p {
  font-size: 1.2rem;
  color: #0077ff;
}

#image img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  border: 2px solid #0077ff;
}

footer {
  text-align: center;
  margin: 20px 0;
  color: #555;
}
