body {
  background-color: #fef9f4;
  font-family: 'Raleway', sans-serif;
  color: #2c2c2c;
  padding: 20px;
  margin: 0;
}

.profile-pic-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-pic {
  width: 180px;
  height: auto;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5em;
  margin-top: 30px;
}

.intro {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.rules ul {
  padding-left: 20px;
}

.bounty-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

input, textarea {
  font-family: 'Fira Code', monospace;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background-color: #f95f62;
  color: white;
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #e24e4f;
}

.footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #888;
  text-align: center;
}
