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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  color: white;
  padding: 0;
  margin: 0;
}

* {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

section {
  padding: 64px 128px 256px;
}

section.landing {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/static/IMG_0827.jpeg") no-repeat center center;
  background-size: cover;
  padding-top: 180px;
}

section.landing * {
  max-width: 600px;
}

section.primary {
  background: rgb(6,10,21);
}

section.primary .title {
  color: #6f58e0;
  text-shadow: 0 0 20px #6447f6;
  font-weight: bold;
  overflow: visible;
}

section.primary .feature {
  width: 350px;
  padding: 20px;
  border-radius: 20px;
}

section.primary .feature p {
  font-size: 17px;
}

section.primary .feature h6 {
  font-size: 21px;
}

section.register {
  padding-top: 150px;
}

section.register input {
  max-width: 100%;
}

section.register button, section.verify button {
  width: 100%;
  border-radius: 9px;
}

section.verify {
  padding-top: 200px;
}

section.verify input.code {
  font-size: 32px;
  text-align: center;
}

section .footer h6 {
  font-size: 20px;
}

section .footer a {
  font-size: 17px;
  color: #94a3b8;
}

section .footer a:hover {
  color: #795EFF;
}

section .footer h5 {
  font-size: 28px;
}

section .footer p {
  font-size: 19px;
}

section .footer button {
  border-width: 1px;
}

nav {
  font-family: var(--default-font);
  position: fixed;
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
  width: calc(100% - 250px);
  border-bottom: 1px solid transparent;
}

.nav-show {
  background: rgb(6,10,21);
  border-bottom: 1px solid #293445;
  transition: 1s, backdrop-filter 0s, -webkit-backdrop-filter 0s;
  box-shadow: 0 5px 32px rgb(6,10,21);
}

.nav-fade {
  border-bottom: 1px solid transparent;
  transition: 1s, border-bottom 0.25s, backdrop-filter 0s, -webkit-backdrop-filter 0s;
}

nav.navbar {
  padding: 16px 128px;
}

nav.navbar a {
  font-size: 17px;
  color: white;
  text-decoration: none;
}

nav.navbar button {
  font-size: 16.5px;
  padding: 9px 14px;
  border-width: 1px !important;
}

nav.navbar .title {
  font-size: 21px;
  font-weight: bold;
}

nav.navbar a.bar {
  cursor: pointer;
  display: none;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.left {
	align-items: flex-start;
	text-align: left;
	justify-content: flex-start;
}

.right {
  align-items: flex-end;
  text-align: right;
  justify-content: flex-end;
}

.center {
	justify-content: center;
	align-items: center;
	text-align: center;
}

.wrap {
  flex-wrap: wrap;
}

.space-between {
	justify-content: space-between;
}

.flex-start {
  justify-content: flex-start !important;
}

.col {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.row-reverse {
  flex-direction: row-reverse;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px;
}

.gap-64 {
  gap: 64px;
}

.gap-96 {
  gap: 96px;
}

.gap-128 {
  gap: 128px;
}

.gap-256 {
  gap: 256px;
}

.col-gap-128 {
  column-gap: 128px;
}

.row-gap-64 {
  row-gap: 64px;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 45px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 35px;
}

h5 {
	font-size: 30px;
}

h6 {
	font-size: 24px;
}

p {
  font-size: 20px;
  color: #94a3b8;
  line-height: 1.5;
}

a {
  color: #7c66ea;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  font-family: Inter;
  background-color: #39298A;
  color: white;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 11px;
  border: 1.5px solid #39298A;
  transition: 0.3s;
  cursor: pointer;
}

button.secondary {
  background-color: rgb(6,10,21);
  border-color: #293445;
}

button:hover {
  border: 1.5px solid #5239CC;
}

button:active {
  border-color: #795EFF;
}

input {
  font-family: Inter;
  background-color: rgb(6,10,21);
  font-size: 17px;
  border: 1px solid #293445;
  color: #a8b7cd;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
  width: fit-content;
}

input::placeholder {
  color: #a8b7cd;
}

input:focus {
  border-color: #5239CC;
}

label[required="required"] {
  color: rgb(255, 152, 152);
}

svg.ionicon {
  background: rgb(26,11,61);
  color: #6447f6;
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
}

.footer a svg {
  fill: #94a3b8;
  transition: 0.3s;
}

.footer a svg:hover {
  fill: #795EFF;
}

.border-top {
  border-top: 1.5px solid #293445;
}

.border-bottom {
  border-bottom: 1.5px solid #293445;
}

@media (max-width: 1200px) {
  section {
    padding: 64px 32px 256px;
  }

  nav.navbar {
    padding: 16px 32px;
    width: calc(100% - 64px);
  }

  nav.navbar a.bar {
    display: block;
  }

  nav .flex.gap-32 {
    display: none;
  }

  .nav-open {
    align-items: flex-start;
    height: 100%;
  }

  .nav-open .flex.gap-32 {
    background: rgb(11,17,33);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 64px 0px 32px;
    gap: 8px;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    left: 0;
    border-bottom: 1px solid #293445;
    z-index: -1;
  }

  nav .flex.gap-16 input {
    display: none;
  }

  .footer {
    flex-direction: column;
  }

  section .footer {
    gap: 64px;
  }
}

@media (min-width: 800px) {
  nav .flex.gap-16 input {
    display: block;
  }
}

@media (max-width: 600px) {
  section:last-of-type {
    padding: 64px 16px;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
  	align-items: center;
  	text-align: center;
  }

  .footer .flex.gap-128 {
    flex-direction: column;
    gap: 64px;
  }

  .footer .flex.gap-16 {
    gap: 8px;
  }

  section.flex.gap-64 {
    gap: 16px;
  }

  .footer .contact .flex.row.gap-16 {
    gap: 20px;
  }
}

::selection {
  background-color: rgba(99, 102, 241, 0.1);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(6,10,21);
}

::-webkit-scrollbar-thumb {
  background: #5239CC;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #795EFF;
}
