body {
  text-align: center;
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 20px;
}

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

/* Updated button to hover nicely */
button {
  background-color: orange;
  color: black;
  border-radius: 25px;
  border-width: 0px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin: 10px;
  transition: transform 0.1s, background-color 0.2s;
}

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

/* Secondary button style for less important actions */
button.secondary {
  background-color: transparent;
  border: 2px solid orange;
  color: orange;
}

button.secondary:hover {
  background-color: #333;
  color: white;
  border-color: white;
}

a {
  text-decoration: none;
}

b {
  color: orange;
}

.cont {
  border-width: 1px;
  border-color: white;
  padding: 20px;
  border-style: solid;
  margin: auto;
  max-width: 800px;
  background-color: #111;
}

/* Grid for the features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.feature-box {
  flex: 1;
  min-width: 200px;
  padding: 15px;
}

.svg-icon {
  width: 50px;
  height: 50px;
  stroke: orange;
  stroke-width: 2;
  fill: none;
  margin-bottom: 10px;
}

hr {
  border-color: #333;
  margin: 30px 0;
}
