body {
  background-color: black;
  color: white;
  font-family: Helvetica, sans-serif;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
}

h1 {
  text-align: center;
  font-size: 48px;
  margin: 0 auto;
}

.subtitle {
  text-align: center;
  font-weight: 300;
}

h3{
  text-align: center;
  font-weight: 300;
}

.content {
  margin-top: 60px;
}

h3 {
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 30px;
  margin-top: 30px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: black;
  border: 1px solid white;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
  align-items: center;
}

.card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.card img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.text {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.coupon {
  font-size: 13px;
  color: white;
  text-decoration: none;
  font-weight: 300;
  display: inline-block;
  line-height: 1.3;
  text-align: center;
}

.buttons {
  margin-top: 50px;
  text-align: center;
}

.button {
  display: inline-block;
  background-color: #222;
  color: white;
  padding: 7px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  margin: 10px;
}

.button:hover {
  background-color: #222;
  transition: background-color 0.3s ease-in-out;
}