@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: auto;
  margin: auto;
}

#intro {
    font-size: 1.2rem;
    font-weight: 100;
}

#main {
  margin-top: 150px;
  margin-bottom: 40px;
  width: 800px;
}

#main h1 {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-size: 3rem;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  margin-bottom: 10px;
}

/* #main h1 {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
} */

#main p {
  font-size: 1.5rem;
  font-family: "Source Serif 4", serif;
  font-weight: 400;
}

#main h2 {
    margin: none;
    padding: none;
    color: red;
    text-decoration: underline;
}

.interests {
    font-family: sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

#connect {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

#connect a:nth-child(2) {
  margin-top: 3.5px;
}

#connect > * {
    border-bottom: 1px solid #000;
}

#connect > *:not(:first-child) {
  margin-left: 12px;
}

a:link,
a:active,
a:visited {
  color: #000;
  text-decoration: underline;
}

a.social:link,
a.social:active,
a.social:visited {
  font-size: 1.5rem;
  color: #000;
  text-decoration: none;
}

a.social:hover {
  color: #000;
}

@media only screen and (max-width: 800px) {
  #main {
    margin-top: 0;
    margin-bottom: 30px;
    width: 300px;
  }

  #main h1 {
    font-size: 2rem;
  }

  #main p {
    font-size: 1.25rem;
  }
}
