@font-face {
  font-family: "Source Sans";
  src: url("/assets/fonts/sourcesans-regular.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans";
  src: url("/assets/fonts/sourcesans-bold.woff2") format("woff2");
  font-weight: bold;
}
@font-face {
  font-family: "Source Sans";
  src: url("/assets/fonts/sourcesans-semibold.woff2") format("woff2");
  font-weight: 600;
}
body {
  font-family: "Source Sans", sans-serif;
}

nav {
  height: 100px;
  display: flex;
  padding: 0px 25px;
  align-items: center;
}
@media (max-width: 600px) {
  nav {
    height: 50px;
    padding: 0px 5px;
  }
}
nav a.logo-link {
  margin-left: 0px;
  display: flex;
  display: relative;
  z-index: 2;
  align-self: baseline;
}
nav a.logo-link svg {
  width: 110px;
  margin-top: -10px;
}
@media (max-width: 600px) {
  nav a.logo-link svg {
    width: 70px;
  }
}
nav a.logo-link svg path {
  transition: stroke-width 0.2s ease, stroke 0.4s ease;
  stroke-width: 2.5px;
  stroke: #715364;
}
nav a.logo-link svg #letter-l {
  transition-delay: 0s;
}
nav a.logo-link svg #letter-f, nav a.logo-link svg #letter-f-crossbar {
  transition-delay: 0.3s;
}
nav a.logo-link svg #letter-t, nav a.logo-link svg #letter-t-crossbar {
  transition-delay: 0.6s;
}
nav a.logo-link svg #dash-1 {
  transition-delay: 0.9s;
}
nav a.logo-link svg #dash-2 {
  transition-delay: 1s;
}
nav a.logo-link svg #dash-3 {
  transition-delay: 1.1s;
}
nav a.logo-link:hover > svg path {
  stroke-width: 4px;
  stroke: #EB43A3;
}
nav > a {
  font-weight: 600;
  font-size: 35px;
  color: #715364;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
  margin-left: 40px;
}
@media (max-width: 600px) {
  nav > a {
    margin-left: 25px;
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  nav > a:not(.logo-link) {
    margin-left: 10px;
    display: none;
    font-size: 20px;
  }
}
nav > a:hover {
  color: #EB43A3;
}
nav a.button-form {
  color: white;
  background-color: #715364;
  padding: 0px 18px;
  border-radius: 13px;
  transition: background-color 0.2s ease;
}
@media (max-width: 600px) {
  nav a.button-form {
    border-radius: 10px;
  }
}
nav a.button-form:hover {
  text-decoration: none;
  background-color: #EB43A3;
}
nav .open-close-navbar {
  position: absolute;
  right: 15px;
  display: none;
  cursor: pointer;
  /* This prevents other text on the page from being selected by clicking on this element */
  user-select: all;
  z-index: 2;
}
@media (max-width: 450px) {
  nav .open-close-navbar {
    display: block;
  }
}
@media (any-hover: hover) {
  nav .open-close-navbar:hover > svg {
    fill: #EB43A3;
  }
}
nav .open-close-navbar:active > svg {
  fill: rgb(180.7692307692, 19.2307692308, 111.5384615385);
}
nav .open-close-navbar svg {
  display: block;
  width: 50px;
  fill: #715364;
  transition: fill 0.1s linear;
}
nav .open-close-navbar .hamburger > * {
  transform-origin: center;
  transition: transform 0.2s ease;
}
nav #flyout-menu-checkbox {
  display: none;
}
nav #flyout-menu-checkbox:checked ~ .open-close-navbar {
  display: block;
}
nav #flyout-menu-checkbox:checked ~ .open-close-navbar > .hamburger .top {
  transform: scaleX(0) translateY(13.5px);
}
nav #flyout-menu-checkbox:checked ~ .open-close-navbar > .hamburger .middle-1 {
  transform: rotate(45deg);
}
nav #flyout-menu-checkbox:checked ~ .open-close-navbar > .hamburger .middle-2 {
  transform: rotate(-45deg);
}
nav #flyout-menu-checkbox:checked ~ .open-close-navbar > .hamburger .bottom {
  transform: scaleX(0) translateY(-13.5px);
}
nav #flyout-menu-checkbox:checked ~ .flyout-menu {
  transform: translateX(0%);
}
nav .flyout-menu {
  transform: translateX(-110%);
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background-color: white;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.6901960784);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav .flyout-menu a {
  margin: 15px 40px;
  display: block;
  color: #EB43A3;
  text-decoration: none;
  font-weight: 600;
  font-size: 47px;
}

.new-chip {
  font-size: 25px;
  border-radius: 30px;
  padding: 0px 10px;
  vertical-align: middle;
  margin-left: 10px;
  border: 2px solid #EB43A3;
}

.container {
  margin-top: 20px;
}

.intro-section {
  display: flex;
  max-width: 1450px;
  margin: 0 auto;
}

.summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 2;
}

.name {
  color: #EB43A3;
  font-size: 70px;
  margin-bottom: 0px;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 600px) {
  .name {
    font-size: 40px;
  }
}

.about {
  font-weight: 600;
  font-size: 30px;
  max-width: 470px;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .about {
    font-size: 25px;
  }
}

#resume-button {
  display: none;
}
@media (max-width: 450px) {
  #resume-button {
    display: block;
  }
}

.links {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-self: center;
}
.links .link-row {
  margin-top: 20px;
}
.links .link-row p {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1060px) {
  .links {
    display: none;
  }
}

.link-row {
  display: flex;
  align-items: center;
  color: #EB43A3;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.link-row svg {
  width: 44px;
  height: 44px;
  fill: #715364;
}
.link-row p {
  text-decoration: none;
  font-weight: 600;
  font-size: 42px;
  margin: 0 0 0 21px;
}
.link-row:hover {
  transform: translateX(6px);
}
.link-row:hover p {
  font-weight: bold;
}
.link-row:active {
  color: rgb(180.7692307692, 19.2307692308, 111.5384615385);
}

.link-button {
  color: white;
  background-color: #EB43A3;
  border: 3px solid #EB43A3;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 22px;
  border-radius: 10px;
  margin: 10px 0px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.link-button:hover {
  background-color: white;
  color: #EB43A3;
  text-decoration: underline;
}
.link-button:active {
  color: rgb(180.7692307692, 19.2307692308, 111.5384615385);
  border-color: rgb(180.7692307692, 19.2307692308, 111.5384615385);
}

.projects {
  margin-bottom: 50px;
}
.projects hr {
  border: 3px solid #a28598;
  background-color: #a28598;
  margin: 35px -8px -7px -8px;
}
@media (max-width: 700px) {
  .projects hr {
    margin-bottom: 0;
  }
}
.projects h2 {
  color: #EB43A3;
}
.projects .projects-title {
  background-color: white;
  display: inline-block;
  font-size: 45px;
  margin-top: -500px;
  margin-left: 140px;
  padding: 0px 15px;
}
@media (max-width: 700px) {
  .projects .projects-title {
    margin: 20px 0px;
  }
}
@media (max-width: 450px) {
  .projects .projects-title {
    font-size: 35px;
  }
}
.projects .class-projects-title {
  font-size: 45px;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0px 15px;
}
@media (max-width: 1163px) {
  .projects .class-projects-title {
    max-width: 650px;
  }
}
@media (max-width: 450px) {
  .projects .class-projects-title {
    font-size: 35px;
  }
}

.project-cards {
  display: grid;
  max-width: 1450px;
  margin: 0 auto 20px auto;
  grid-template-columns: repeat(auto-fill, 540px);
  align-items: center;
  justify-content: center;
  grid-gap: 40px 50px;
}
@media (max-width: 550px) {
  .project-cards {
    grid-template-columns: 1fr;
    grid-gap: 18px;
  }
}

.project-card {
  display: flex;
  max-width: 540px;
}
.project-card img {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.4);
}
.project-card .card-text {
  margin-left: 35px;
}
.project-card .card-text h3 {
  margin: 3px 0px;
  font-size: 37px;
}
.project-card .card-text p {
  font-size: 20px;
  margin-top: 0px;
}
.project-card .card-text div {
  display: flex;
  margin: 10px 0px;
  align-items: center;
}
.project-card .card-text div a {
  padding: 6px 12px;
  font-size: 19px;
  border-radius: 7px;
  margin: 0px;
}
.project-card .card-text div p {
  color: grey;
  margin: 0px 0px 0px 10px;
}
@media (max-width: 550px) {
  .project-card {
    margin-left: -50px;
  }
  .project-card img {
    width: 140px;
    height: 140px;
  }
  .project-card .card-text {
    margin-left: 25px;
  }
  .project-card .card-text h3 {
    margin: 0px 0px 3px 0px;
    font-size: 25px;
  }
  .project-card .card-text p {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .project-card .card-text a {
    padding: 2px 12px;
  }
}

@media (min-width: 1060px) {
  nav > a {
    display: none;
  }
  .intro-section {
    margin-top: -20px;
    margin-bottom: 80px;
  }
}

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