/* OBLIGATORY */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap");

/* ALL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Mono', monospace;
  color: #070318;
}

body {
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5em 1.5em 4em 1.5em;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 4em auto 2em auto;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.07);
  padding: 2.5em 2em 2em 2em;
}

.sub {
  width: 100%;
  margin: 1.5em auto 0 auto;
}


p {
  font-size: 1em;
  margin: 0.5em 0 0.5em 0;
  text-align: left;
  text-transform: none;
  line-height: 1.6;
}

.hero .progress {
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 1.2em;
}

.hero .bodytext {
  font-size: 0.95em;
  text-align: center;
  margin-top: 0.5em;
}


section {
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
  margin: 2em auto;
  padding: 2em 1.5em;
  max-width: 700px;
}

section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.7em;
  color: #070318;
}

section ul {
  margin-left: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

section li {
  font-size: 1em;
  margin-bottom: 0.4em;
  line-height: 1.5;
}

.founders {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5em;
}
.founder-card {
  display: flex;
  align-items: center;
  gap: 1.3em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05);
  padding: 1.4em 2em;
  min-width: 280px;
  max-width: 500px;
}
.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #eee;
}
.founder-card h3 {
  margin: 0 0 0.2em 0;
  font-size: 1.1em;
  font-family: 'Poppins', sans-serif;
}
.founder-card p {
  margin: 0;
  font-size: 0.97em;
  color: #444;
}

/* MEDIA QUERIES */
@media only screen and (min-width: 568px) {
  .hero {
    width: 340px;
  }
  section {
    padding: 2.5em 2.5em;
  }
}
