* {
  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;
}

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;
}

nav > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav > a {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav > div:nth-child(3) > a:first-child {
  color: var(--dark-text-color);
}

nav > div: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;
}

main > section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 60px;
}

main > section > h1 {
  font-size: 2em;
  text-align: center;
  font-weight: 700;
  word-break: break-all;
  align-self: center;
}

main > section > ol {
    list-style: decimal;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main > section > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

main > section > ul a {
    color: var(--tertiary-color)
}

main > section li {
    line-height: 1.5;
}

main > section ol > li > span, main > section ol li::marker {
    font-weight: 700;
    font-size: 1.5em;
}

main > section ol > li > ol {
    list-style: circle;
    list-style-position: inside;
    margin: 10px 0px 10px 20px;
}

.button {
  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);
}

.button:hover {
  box-shadow: 0 0 30px 0 var(--hover-shadow-color);
  filter: brightness(1.3);
}

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;
}

.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;
}

@media (min-width: 2000px) {
  header {
    width: 1800px;
  }

  main {
    width: 1000px;
  }

  footer {
    width: 1100px;
  }
}

@media (max-width: 1500px) {
  header > nav {
    width: 80%;
  }

  main {
    width: 80%;
  }

  footer {
    width: 80%;
  }
}

@media (max-width: 1100px) {
  header > nav {
    width: 90%;
  }

  main {
    width: 90%;
  }

  footer {
    width: 90%;
  }
}

@media (min-width: 651px) {
  .burgerMenu {
    display: none;
  }

  .mainNavigation {
    max-height: 500px !important;
    position: static !important;
  }
}

@media (max-width: 650px) {
  .burgerMenu {
    display: flex;
  }

  .mainNavigation {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    margin: auto;
    flex-direction: column;
  }

  header > nav {
    flex-wrap: wrap;
    gap: 20px;
    width: 50%;
  }

  header {
    position: relative;
  }
}

@media (max-width: 550px) {
  .plansComparison {
    font-size: 0.8em;
  }

  footer {
    font-size: 0.9em;
    flex-direction: column;
  }

  header > nav {
    width: 60%;
  }
}

@media (max-width: 400px) {
  header > nav {
    width: 80%;
  }

  footer > nav {
    flex-direction: column;
  }
}
