* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-weight: 800;
  font-size: 1.8rem;
}

.full-page {
  height: 100vh;
  width: 100vw;
}

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

.flex-center-x {
  display: flex;
  justify-content: center;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.overflow {
  overflow: hidden;
}

.hero img {
  height: 200px;
  width: 200px;
  border-radius: 100px;
}

#expander {
  background: black;
  border-radius: 50%;
}

#arrow {
  margin-left: calc(50% - 24px);
  margin-top: -100px;
}

.z-2 {
  z-index: 2;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex-basis: 50%;
  padding: 2rem;
}

.col.no-pad {
  padding: 0;
}

.col--lg {
  flex-basis: 100%;
}

@media (min-width: 620px) {
  .col--lg {
    flex-basis: 50%;
  }
}

main {
  width: 100%;
  max-width: 75rem;
  font-weight: 300;
  margin-top: 96px;
}

ul.clean {
  list-style: none;
  padding-inline-start: 0;
}

ul.clean li {
  margin: 1rem;
}

li svg {
  width: 16px;
  margin-right: 0.5rem;
}

a {
  display: flex;
  align-items: center;
  color: #b88dfc;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.paragraph {
  color: white;
}

.main-image {
  max-width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}
