@keyframes wobble {
  0%{
      margin-bottom: 0px;
  }
  50%{
      margin-bottom: 10px;
  }
  100%{
      margin-bottom: 0px;
  }
}

html, body
{
    margin:0;
    padding: 0;
    background-color: #121212;
    font-family: 'Poppins', sans-serif;
}

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pricingcontainer
{
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 5vh;
}

.herotext
{
    display: inline-block;
    color: white;
    /* padding: 0vw 10vw 0vw 10vw; */
    text-align: center;
    margin: auto;
    margin-left: 40px;
    margin-right: 40px;
    line-height: 1.2;
}

.herotext h4
{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size:  clamp(12px, 4vw, 24px);
    max-width: 40vw;
    min-width: 250px;
    margin-top: 10px;
}

.herotext h1
{
    font-size: clamp(16px, 6vw, 32px)
}


.card {
  --card-bg-color: #1d1d1d;
}
.emphasised {
  --bg-color: #44D687;
  --text-color: #fff;
}


  body {
    --text-color: #fff;
    --bg-color: #121212;
  }

  body > section.pricing > .card {
    --card-bg-color: rgb(24 24 39);
  }


body {

  background: var(--body-color);
  color: var(--bg-color);
}

/*  */

/* General gloabal elemnt style  */
h1 {
  font-size: 46px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}

p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

section.pricing {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  height: 100vh;
  justify-content: center;
  background: var(--bg-color);
  color: var(--text-color);
}

.section-title-group {
  text-align: center;
  width: auto;
  max-width: 420px;
  padding-bottom: 46px;
}

h2.section-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.05%;
}
p.section-sub-title {
  opacity: 0.8;
}

.deals-card-group {
  display: flex;
  gap: 20px;
  padding: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  min-width: 180px;
  max-width: 200px;
  max-height: 270px;
  width: 20vw;
  height: 30vw;
  min-height: 250px;
  background: var(--card-bg-color);
  color: var(--text-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
}

/* .emphasised {
  background: var(--em-bg-color);
} */

.emphasised {
  background: var(--bg-color);
  color: var(--text-color);
}

.highlight:before {
  content: "Best price";
  display: flex;
  height: 24px;
  width: fit-content;
  background: #a0e0b2;
  color: #10101c;
  padding: 2px 16px;
  border-radius: 16px;
  align-items: center;
  position: absolute;
  margin: 0 auto;
  top: -12px;
  left: 25%;
}

h3.card-title {
  font-size: 18px;
  max-width: 80%;
  line-height: 24px;
  margin-bottom: 24px;
  padding: 8px;
  flex: 1;
}

p.price-tag {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  padding: 8px;
  flex: 2;
}

.price-tag span {
  font-size: 12px;
  display: block;
  opacity: 0.6;
}

.card-footer {
  margin-top: 8px;
  display: flex;
  width: 100%;
  flex: 1;
  align-items: flex-end;
}

.card-footer a {
  text-decoration: none;
  color: inherit;
  width: 100%;
  opacity: 0.6;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-radius: 4px;
}

a.link-button:after {
  content: "";
  height: 24px;
  width: 24px;
  background: url(https://raw.githubusercontent.com/rahulkuulsingh/ui-components/main/assets/arrow-right.svg);
  filter: invert(1);
}

a.link-button:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (hover: hover) {
.card:hover
{
  cursor: pointer;
}
}