body {
  background-color: #262626; /* Dark background color */
  color: #fff; /* Light text color */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Use a modern sans-serif font */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  color: #61dafb; /* ChatGPT blue color */
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.box {
  width: 300px; /* Fixed width for consistency */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
  background-color: #333; /* Dark box background color */
  overflow: hidden; /* Hide overflowing content */
}

.box h2 {
  font-size: 24px;
  margin: 0 0 15px;
  color: #61dafb; /* ChatGPT blue color */
}

.box p {
  font-size: 16px;
  margin: 0;
  color: #ccc; /* Light text color */
}

.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, #61dafb, #ff7e5f); /* Gradient bar on top */
  border-radius: 15px 15px 0 0;
}
