body {
  background-color: #ffffff;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Karla", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#hand {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
  transform-origin: 70% 70%;
}

img#profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img#profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

h1 {
  margin: auto;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.content {
  width: 600px;
  margin: auto;
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .content {
    width: 100%;
    padding: 20px;
  }
}

#description {
  color: #6e6e73;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6;
}

#description:hover {
  color: #86868b;
}

h2 {
  margin-top: 80px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Libre Baskerville", serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: center;
  color: #1d1d1f;
}

ul {
  list-style: none;
  padding: 0px;
}

ul.projects li {
  margin-top: 50px;
  padding: 24px;
  background: #f5f5f7;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul.projects li:hover {
  background: #e8e8ed;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

ul.projects li:first-of-type {
  margin-top: 25px;
}

ul.projects li span.hover-prompt {
  float: right;
  font-size: 12px;
  color: #6e6e73;
}

@media (hover: hover) {
  ul.projects li span.hover-prompt {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  ul.projects li span.hover-prompt:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #1d1d1f;
  }
}

h3 {
  margin-bottom: 12px;
  margin-top: 0px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1d1d1f;
}

h3 span.project-date {
  color: #6e6e73;
  font-weight: 400;
}

p.project-desc {
  color: #515154;
  margin-top: 0px;
  line-height: 1.6;
}

p.skills-used span {
  color: #6e6e73;
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #0071e3;
}

div.employment {
  text-align: center;
  padding: 32px;
  background: #f5f5f7;
  border-radius: 16px;
  margin: 40px 0;
}

div.employment .resume a {
  color: #0071e3;
  font-weight: 500;
}

div.employment .resume a:hover {
  text-decoration: underline;
}

@media (hover: hover) {
  div.employment .resume {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

div.footer {
  padding-bottom: 100px;
  margin-top: 80px;
}

div.footer h2 {
  text-align: center;
}

div.footer div.links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 28px;
  margin: auto;
  margin-top: 32px;
}

div.footer div.links a {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

div.footer div.links a:hover {
  background: #e8e8ed;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

div.tech-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  margin-top: 32px;
  font-size: inherit;
  text-align: center;
}

div.tech-list div.tech {
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #6e6e73;
  padding: 16px;
  background: #f5f5f7;
  border-radius: 12px;
  min-height: 60px;
}

div.tech-list div.tech:hover {
  background: #e8e8ed;
  color: #1d1d1f;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/*# sourceMappingURL=styles.css.map */