/* Start Global Rules */

* {

  -moz-box-sizing: border-box;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}

html {

  scroll-behavior: smooth;

}

:root {

  --padding-top-main-sections:100px;

  --padding-bottom-main-sections:100px;

  --main-white:#ffff;

  --main-background: #1B161D;

  --light-purp:#F6DBFF;

  --main-blue-color:#2F98F6;

  --main-purple-color: #BC38E7;

}

body {

background-color: var(--main-background);

font-family: 'Orbitron', sans-serif;

}

ul {

  list-style: none;

}

a {

  text-decoration: none;

}

img {

  max-width: 100%;

}

.container {

  width: calc(100% - 150px);

  margin: 0 auto;

  padding: 0 10px;

  max-width: 1518px;

}

/* End Global Rules */

/* Start Component */

.Component-heading-title {

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  gap: 15px;

  margin-bottom: 45px;

}

@property --comp-one {

  syntax: '<color>';

  inherits: false;

  initial-value: #BC38E7;

}

@property --comp-two {

  syntax: '<color>';

  inherits: false;

  initial-value: #ffffff;

}

.Component-heading-title h3 {

  background-image: linear-gradient(to bottom, var(--comp-one) 0%,  var(--comp-two)100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  font-weight: 500;

  font-size: 18px;

}

.Component-heading-title h1 {

  margin: 0;

  color: var(--main-white);

  font-weight: 500;

}


/* End Component */

/* Start Landing */

.landing {

  position: relative;

  z-index: 500;

}

.landing::before {

  content: '';

  width: 0px;

  height: 0px;

  background-color: transparent;

  position: absolute;

  top: 100px;

  left: 200px;
  
  z-index: 40;

  border-radius: 50%;

  box-shadow: 0px 0px 500px 250px #2f99f616;

  z-index: -10;

}

.landing .container {

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  height: calc(100vh - 62px);

  row-gap: 30px;

}

.landing .container .intro {

  display: flex;

  flex-direction: column;

  row-gap: 40px;

  text-align: center;

}

.landing .container .intro h1 {

  line-height: 1.3;

  text-transform: uppercase;

  font-size: 50px;

  margin: 0;

  color: var(--main-white);

}

.landing .container .intro p {

  color: var(--main-white);

  font-size: 18px;

  line-height: 1.7;

  font-weight: 400;

  letter-spacing: 0.5px;

}

@property --b-w-one {

  syntax: '<color>';

  inherits: false;

  initial-value: #ffffff;

}

@property --b-w-two {

  syntax: '<color>';

  inherits: false;

  initial-value: #2f98f6;

}

.landing .container .intro p .b-w {

  background-image: linear-gradient(to bottom, var(--b-w-one) 0%, var(--b-w-two)100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  font-weight: 500;

}

@property --p-w-one {

  syntax: '<color>';

  inherits: false;

  initial-value: #ffffff;

}

@property --p-w-two {

  syntax: '<color>';

  inherits: false;

  initial-value: #ba66d6;

}

.landing .container .intro p .p-w {

  background-image: linear-gradient(to bottom, var(--p-w-one) 0%, var(--p-w-two)100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  font-weight: 500;

}

.landing .container .count-down {

  display: flex;
  
  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  color: var(--main-white);

  width: 500px;

}

.landing .container .count-down div {

  display: flex;

  flex-direction: column;

  align-items: center;

  row-gap: 10px;

  font-weight: 500;

  border: 1px solid var(--main-white);

  width: calc(25% - 10px);

  padding: 10px;

  border-radius: 10px;

}

.landing .container .count-down div span.time {

  font-size: 35px;

}

.landing .container .count-down div span.unit {

  font-size: 20px;

  color: var(--light-purp);

}

/* End Landing */


.footer {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  padding: 20px 0;

  border-top: 2px var(--light-purp) solid;

}

.footer .rights {

  color: white;

  font-size: 13px;

  display: flex;

  align-items: center;

  gap: 5px;

}

.footer .rights span.copy {

  font-size: 18px;

}

@property --rqudex-footer-one {

  syntax: '<color>';

  inherits: false;

  initial-value: #BC38E7;

}

@property --rqudex-footer-two {

  syntax: '<color>';

  inherits: false;

  initial-value: #ffffff;

}

.footer .rights span.rqudex {

  color: var(--main-purple-color);

  font-weight: 500;

  background-image: linear-gradient(to bottom, var(--rqudex-footer-one) 0%,  var(--rqudex-footer-two)100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

/* End Footer */

/* Start Media */

@media (max-width: 700px) {

  .container {

    width: calc(100% - 80px);

  }

  .landing .container {

    row-gap: 40px;

  }

  .landing .container .count-down {

    width: 300px;

    row-gap: 20px;

  }

  .landing .container .intro h1 {

    font-size: 45px;

  }

  .landing .container .count-down div {

    width: calc(50% - 10px);

    padding: 15px 10px;

  }

  .landing .container .count-down div span.time {

    font-size: 30px;

  }

  .landing .container .count-down div span.unit {

    font-size: 18px;

  }
  
}

@media (max-width: 426px) {

  .landing .container .intro h1 {

    font-size: 40px;

  }

  .landing .container .intro p {

    font-size: 16px;

  }

  .landing .container .count-down {

    width: 250px;

  }

  .landing .container .count-down div span.time {

    font-size: 25px;

  }

  .landing .container .count-down div span.unit {

    font-size: 16px;

  }
  
}

@media (max-width: 375px) {

  .container {

    width: 100%;

  }

} 

/* End Media */

