* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  font-family: 'Montserrat', sans-serif;

}

:root {
  --green: #04C800;
  --darkgreen: #03a800;
  --grey: #A6A6A6;
}

/* Main section
__________________________________ */

#main {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url(images/jordan-4-university-blue_finkickz.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0 5000px rgba(38, 38, 38, 0.7);
}

.main_container {
  color: #fff;
}

.main_back-btn {
  position: absolute;
  top: 0;
  padding: 10px;
}
.main_back-btn a {
  color: #E6E6E6;
  text-decoration: none;
  font-size: 40px;
  transition: all 0.2s;
}
.main_back-btn a:hover {
  opacity: 0.5;
}

.main_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main_heading svg {
  /* background-color: red; */
}

.heading_logo-text {
  font-size: 2rem;
  letter-spacing: 0rem;
  color: var(--green);
  font-weight: 600;
  line-height: 45px;
}

/* coming soon text */
.main_coming-soon-text {
  margin-top: 8%;
  margin-bottom: clamp(5px, 5%, 50px);
  font-size: 1.4rem;
}
.main_coming-soon-text > h1 {
  font-weight: 500;
}


.finkickz_logo {
  width: 90px;
}

/* concept section
____________________________________________ */

.main_concept {
  overflow-wrap: anywhere;
  width: 90vw;
  max-width: 450px;
  margin: 0 auto;
  color: #171717;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px 20px 40px 20px;
  border-radius: 20px;
}
.main_concept h2 {
  color: #000000;
  margin-bottom: -10px;
  font-size: 1.5rem /*26px*/;
}

.main_concept ol {
  text-align: left;
  font-size: 1.1rem /*22px*/;
  padding-left: 55px;
  list-style: none;
  margin: 0;
  counter-reset: list-counter;
}

.main_concept li {
  margin: clamp(25px, 5vh, 40px) 0px;
  position: relative;
  counter-increment: list-counter;
}
.main_concept li:last-child {
  margin: 0px 0px;
}

.main_concept li::before {
  content: counter(list-counter)".";
  position: absolute;
  left: -2.5em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--darkgreen);
  box-sizing: border-box;
  color: var(--darkgreen);
  font-weight: bold;
}


/* Responsive
_________________________________________ */
@media all and (min-width: 1300px){

  #main {
    background-repeat: repeat;
    background-size: contain;
  }

}

