@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
  font-family:'Inter', sans-serif;
  background-color: #0d131a;
  color: #f5f5f5;
  margin: 0;
  padding: 20px; /* Add padding to ensure content is not cut off */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1200px;
  text-align: center;
  padding-bottom: 100px; /* Adds plenty of space below the main content */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 5rem;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
}

.pricing-item {
  background-color: #3C79B4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

.pricing-item h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.pricing-item p {
  font-size: 1em;
  margin: 0;
  text-align: center;
}

.pricing-item small {
  font-size: 0.8em;
  color: #ccc;
}

a {
  text-decoration: none;
  font-weight: bold;
}

.button {
  padding: 10px 20px;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button.secondary {
  background-color: transparent;
  color: #007BFF;
}

.button.secondary:hover {
  color: #fff;
}


/* Mobile Styles */
@media (max-width: 800px) {
  .pricing-grid {
      grid-template-columns: 1fr;
      margin-left: 80px;
      margin-right: 80px;
  }

  .pricing-item {
      max-width: 100%;
      height: auto;
      padding: 20px;
  }

  h1 {
      font-size: 2em;
  }

  .pricing-item h2 {
      font-size: 1.3em;
  }

  .pricing-item p {
      font-size: 0.9em;
  }
}