* {
  transition-delay: 20ms;
  transition-duration: 0.7s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-color);
  text-decoration: none;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #181616;
  --secondary-color: #1d1d1d;
  --tertiary-color: #95190c;
  --quartiary-color: #4d4d4d;
  --success-color: #9ecea3;
  --text-color: #fffce6;
  --dark-text-color: #99978b;
  --hover-shadow-color: rgba(0, 0, 0, 0.616);
  --secondary-transparent-color: #1d1d1d6c;
}

::-webkit-scrollbar {
  width: 0.3vw;
  border-radius: 2px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--tertiary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  height: auto;
  width: 100%;
  background-color: var(--primary-color);
  font-family: "Comfortaa", sans-serif;
  overflow-x: hidden;
  /* this is done because of the bio preview images, it doesnt affect anything else */
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  position: sticky;
  top: 10px;
  z-index: 2;
}

header > nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  padding: 10px;
  background-color: var(--secondary-color);
  border-radius: 30px;
  border: 1px solid var(--quartiary-color);
  box-shadow: 0 0 10px 5px rgb(0, 0, 0);
}

.tabLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--quartiary-color);
  padding: 8px;
  border-radius: 30px;
}

.mainNavigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav > a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mainNavigation:nth-child(3) > a:first-child {
  color: var(--dark-text-color);
}

.mainNavigation:nth-child(3) > a:first-child:hover {
  color: var(--text-color);
}

.loginButton {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--quartiary-color);
}

.loginButton:hover {
  box-shadow: 0 0 5px 0 var(--quartiary-color);
  filter: brightness(1.3);
  background-color: var(--secondary-color);
}

.signupButton {
  background: linear-gradient(
    90deg,
    rgba(97, 0, 0, 0.5) 0%,
    rgba(149, 25, 12, 0.5) 35%,
    rgb(143, 100, 60, 0.5) 100%
  );
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--quartiary-color);
  filter: brightness(0.9);
}

.signupButton:hover {
  box-shadow: 0 0 5px 0 var(--quartiary-color);
  filter: brightness(1.3);
}

.proButton {
  background: linear-gradient(90deg, #951a0c7e 40%, rgba(0, 0, 0, 0) 100%);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--tertiary-color);
}

.proButton:hover {
  box-shadow: 0 0 10px 5px var(--tertiary-color);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  gap: 20px;
}

.tagLine {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  margin-top: 100px;
  font-size: 3em;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  position: relative;
  width: 100%;
}

.tagLine > article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.tagLine > article:nth-child(4) > p:last-child {
  background: linear-gradient(
    30deg,
    rgb(139, 0, 0) 0%,
    rgba(149, 25, 12, 1) 35%,
    rgb(143, 100, 60) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagLine > img {
  border-radius: 5px;
  position: absolute;
  width: 500px;
  border: 2px solid var(--quartiary-color);
}

.tagLine > img:nth-child(5) {
  left: -60%;
  transform: rotate(-25deg);
}

.tagLine > img:last-child {
  right: -60%;
  transform: rotate(25deg);
}

.getStarted {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  font-size: 1.5em;
  margin-top: 20px;
  border-radius: 30px;
  padding: 20px;
}

.getStartedButton {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.2rem;
  border: 1px solid var(--quartiary-color);
  background: linear-gradient(
    90deg,
    rgba(97, 0, 0, 0.5) 0%,
    rgba(149, 25, 12, 0.5) 35%,
    rgb(143, 100, 60, 0.5) 100%
  );
  filter: brightness(0.9);
}

.getStartedButton:hover {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  filter: brightness(1.3);
}

.getStarted > a:last-child {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.2rem;
}

#learnMore:hover {
  cursor: pointer;
}

.users {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5em;
  margin-top: 20px;
  background-color: var(--secondary-transparent-color);
  border-radius: 30px;
  padding: 20px;
  border: 1px solid var(--quartiary-color);
  gap: 40px;
  width: 100%;
}

.users > section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  border-top: 1px solid var(--quartiary-color);
  padding-top: 40px;
  flex-wrap: wrap;
}

.users > section > a, .users > section > article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 130px;
  text-align: center;
  border: 1px solid var(--quartiary-color);
  padding: 20px;
  border-radius: 30px;
  background-color: transparent;
}

.users > section > a:hover {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  transform: scale(1.1);
}

.users span {
  background-color: var(--success-color);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.users > section > a > p:first-child, .users > section > article > p:first-child {
  font-size: 2em;
  font-weight: 500;
}

.users > section:last-child > a > img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.tabAbout {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--secondary-transparent-color);
  border-radius: 30px;
  padding: 20px;
  border: 1px solid var(--quartiary-color);
  width: 100%;
  text-align: center;
}

.tabAbout > div {
  display: flex;
  gap: 10px;
  font-size: 2.5em;
}

.plansComparison {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.plansComparison > p {
  font-size: 2em;
}

.plansComparison > section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.plansComparison > section > section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 40%;
  background-color: var(--secondary-transparent-color);
  border: 1px solid var(--quartiary-color);
  border-radius: 30px;
  padding: 20px;
}

.plansComparison > section > section > p {
  font-size: 2em;
  align-self: center;
}

.plansComparison > section > section ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plansComparison > section > section li {
  display: flex;
  gap: 10px;
}

.plansComparison > section > section span {
  font-size: 2em;
}

.plansComparison > section > section i {
  color: var(--success-color);
}

main > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.2em;
  border: 1px solid var(--quartiary-color);
}

main > a:hover {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  gap: 20px;
  margin: 30px 0;
  padding-top: 20px;
  border-top: 1px solid var(--quartiary-color);
}

footer > nav {
  display: flex;
  gap: 20px;
}

footer > nav > a {
  color: var(--dark-text-color);
}

footer > nav > a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

.blurContainer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(150px);
}

.colorBlur {
  border-radius: 50%;
  background: linear-gradient(
    30deg,
    rgba(97, 0, 0, 1) 0%,
    rgba(149, 25, 12, 1) 35%,
    rgb(143, 100, 60) 100%
  );
  width: 500px;
  height: 500px;
  z-index: -2;
  position: fixed;
}

.tagLine .colorBlur {
  top: 10%;
}

.tagLine .colorBlur:last-child {
  background: #030303;
  top: 10%;
  z-index: -3;
  height: 500px;
}

.tabAbout > .blurContainer > .colorBlur {
  left: 80%;
}

.burgerMenu {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 30px;
  background-color: var(--primary-color);
  border: 1.5px solid var(--quartiary-color);
  cursor: pointer;
}

#burgerMenuImg {
  filter: invert(1);
  width: 20px;
  height: 20px;
}
