@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #090809;
  color: white;
  margin: 0;
  padding: 0;
}

.container {
  margin: 80px auto 0;
  padding: 20px;
  text-align: center;
}

.site-title {
  color: white;
  font-size: 36px;
  margin: 0;
  font-family: 'DM Sans', monospace, sans-serif;
  text-align: center;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0e0d0e;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 99;
}

a{
  text-decoration: none;
  color: white;
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

section p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.hero-section {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
}

.hero-content {
  padding: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    background-color: rgb(18, 18, 18);
}

.pricing-card {
    padding: 25px;
    margin: 15px;
    font-size: 18px;
    background-color: rgb(28, 28, 28);
    box-shadow: 0 4px 15px rgba(50, 50, 50, 0.5);
    color: white;
    border: 2px solid rgb(45, 45, 45);
    border-radius: 10px;
    text-align: center;
    font-family: 'DM Sans', monospace, sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 100%;
}

.pricing-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 28px;
    font-weight: bold;
    color: rgb(0, 180, 255);
    margin: 15px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '✔';
    color: rgb(0, 255, 127);
    margin-right: 8px;
}

.pricing-cta {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgb(0, 126, 180);
    color: white;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.pricing-cta:hover {
    background-color: rgb(0, 163, 233);
}

.pricing-grid:has(.pricing-card:nth-child(1):only-child) {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #090809;
}

footer {
  padding: 10px 0;
  text-align: center;
}