/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

#343a40
#868e96 

*/

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

/* General styles */

html {
  font-size: 62.5%;
}

body {
  font-family: "montserrat";
  color: #343a40;
}

main {
  max-width: 80rem;
  margin: 12.8rem auto 12.8rem auto;
}

h1 {
  font-size: 4.8rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-bottom: 4.8rem;
}

h2 {
  font-size: 2.4rem;
  letter-spacing: 0.12rem;
  line-height: 1.5;
}

p {
  font-size: 1.6rem;
  letter-spacing: 0.105rem;
  line-height: 1.5;
}

.pre-title {
  font-weight: 700;
  color: #495057;
  font-size: 1.2rem;
  letter-spacing: 0.11rem;
}

ul {
  margin-left: 0;
  padding-left: 2rem;
  list-style-position: outside;
}

li {
}

/* Component styles */

/* Nav */
nav {
  max-width: 80rem;
  margin: 3.2rem auto 3.2rem auto;
  display: flex;
  justify-content: flex-end;
  gap: 2.4rem;
}

/* Intro */
.intro {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  gap: 10%;
  /* margin-left: 10%;
  margin-right: 10%; */
  margin-bottom: 12.8rem;
}

.intro-title {
  grid-column: 1 / -1;
}
.headshot {
  width: 20rem;
  border-radius: 1.2rem;
}

.contact-info {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-text {
  font-size: 1.2rem;
}

/* bio */

.bio {
  margin-bottom: 12.8rem;
}

.bio-ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding-inline-start: none;
}

.bio-li {
  margin-bottom: 4.8rem;
}

.bio-title {
  display: inline-block;
  margin-bottom: 1.2rem;
}
.bio-description {
  margin-bottom: 1.2rem;
}

/* Footer */

footer {
  max-width: 80rem;
  margin: 12.8rem auto 12.8rem auto;
  font-size: 1.4rem;
}

.footer-text {
  font-size: 1.4rem;
}

/* Notes */

.paragraph {
  margin-bottom: 2rem;
}

.notes-list {
  font-size: 1.6rem;
  letter-spacing: 0.105rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
