body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  border: 1px solid #000000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-left h1 {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
}

.nav-right img {
  height: 35px;
}

#mainBody {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}

#rightContainer {
  max-width: 400px;
  width: 100%;
}

#container1 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

#container1 button {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#container1 button:hover {
  background-color: #e6e6e6;
  transform: scale(1.05);
}

.copyCode {
  background-color: #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  font-family: monospace;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background-color 0.2s;
}

.copyCode:hover {
  background-color: #e2e2e2;
}

.Gradient {
  width: 600px;
  height: 300px;
  border-radius: 20px;
  background-image: linear-gradient(to right, #D1E84C, #E0C104);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.how-to-use {
  background-color: #f1f1f1;
  border-radius: 20px;
  max-width: 90vw;
  margin: 3rem auto;
  padding: 1rem 1.5rem;
  text-align: center;
}

.how-to-use h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-family: monospace;
}

.how-to-use p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

