/* =========================
   BASE
   ========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;

  font-family: "Courier Prime", monospace;
  font-size: 16px;
}


/* =========================
   LINKS
   ========================= */

a {
  color: #fff;
}


/* =========================
   HOME BUTTON
   ========================= */

.home-btn {
  position: fixed;

  top: 20px;
  left: 20px;

  color: #fff;

  font-family: "Courier Prime", monospace;
  font-size: 16px;

  text-decoration: none;

  z-index: 100;
}

.home-btn:hover {
  text-decoration: underline;
}


/* =========================
   PAGE
   ========================= */

.page-wrapper {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;

  padding: 120px 40px 100px;
}


/* =========================
   ABOUT
   ========================= */

.about-section {
  width: 100%;
}

.about-section p {
  margin: 0;

  font-family: "Courier Prime", monospace;
  font-size: 16px;
  line-height: 1.7;
}


/* =========================
   CLICKABLE LATHER!
   
   This stays exactly like
   the surrounding sentence.
   ========================= */

.lather-link {
  color: inherit;

  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;

  text-decoration: none;
}

.lather-link:hover {
  text-decoration: underline;
}


/* =========================
   DIVIDERS
   ========================= */

.section-divider {
  width: 100%;

  height: 1px;

  background: #fff;

  margin: 35px 0;
}


/* =========================
   SOCIAL LINKS
   ========================= */

.about-links {
  display: flex;
  flex-wrap: wrap;

  gap: 24px;
}

.about-links a {
  color: #fff;

  font-family: "Courier Prime", monospace;
  font-size: 16px;

  text-decoration: none;
}

.about-links a:hover {
  text-decoration: underline;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

  .page-wrapper {
    padding: 90px 20px 60px;
  }

  .home-btn {
    top: 15px;
    left: 15px;
  }

  .about-section p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-links {
    flex-direction: column;
    gap: 12px;
  }
}

