html {
  font-family: system-ui;
  line-height: 1.5rem;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  transition: all ease-in 0.3s;
}
html.dark-theme {
  color: #ffffff;
  background-color: #000000;
}
html.dark-theme svg {
  fill: #ffffff;
}
html svg {
  fill: #000000;
}
html *, html :after, html :before {
  box-sizing: border-box;
}
html h2, html h3, html h4, html body {
  margin: 0;
}
html h3, html h4 {
  font-size: inherit;
}
html h1 {
  font-size: 1.5rem;
  margin: 0.5rem auto;
}
html h2 {
  font-size: 1.2rem;
}
html h3 {
  font-weight: 600;
}
html h4 {
  font-weight: normal;
}
html a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid #eb5286;
}
html a:hover {
  color: #eb5286;
}
html ul {
  list-style-type: "- ";
  padding: 0 1rem;
  line-height: 1.75rem;
}

body {
  position: relative;
}
body.loading-screen-open {
  overflow: hidden;
}
body div.loading-screen, body div.loading-screen > div {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
body div.loading-screen p, body div.loading-screen > div p {
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 5rem;
  font-weight: bold;
}
@media (min-width: 600px) {
  body div.loading-screen p, body div.loading-screen > div p {
    font-size: 3rem;
    line-height: 6rem;
  }
}
body div.loading-screen.first, body div.loading-screen > div.first {
  background: #ffffff;
  color: #eb5286;
  z-index: 999;
}
body div.loading-screen.second, body div.loading-screen > div.second {
  background: #000000;
  color: #ffffff;
  z-index: 998;
}
body div.loading-screen.third, body div.loading-screen > div.third {
  background: #eb5286;
  color: #ffffff;
  z-index: 997;
}
body .sticky-section {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
}
@media (min-width: 600px) {
  body .sticky-section {
    bottom: 5rem;
    right: 5rem;
  }
}
body .sticky-section a {
  color: inherit;
  border-bottom: none;
}
body .sticky-section ul {
  list-style-type: none;
}
body .sticky-section ul li {
  margin-bottom: 1rem;
}
body .sticky-section ul li .fab {
  color: #000000;
}
.dark-theme body .sticky-section ul li .fab {
  color: #ffffff;
}
@media (min-width: 600px) {
  body .sticky-section ul li .fab:hover {
    color: #eb5286;
  }
}
@media (min-width: 600px) {
  body .sticky-section ul li svg:hover {
    fill: #eb5286;
  }
}
body .wrapper {
  max-width: 1100px;
  margin: 1rem auto;
  border-radius: 0.25rem;
}
body .wrapper .header, body .wrapper .container {
  padding: 1rem;
}
body .wrapper .header p {
  margin: 0.25rem 0;
}
body .wrapper .header .title {
  color: #666666;
}
body .wrapper .contact-container, body .wrapper .contact-container div {
  display: flex;
  align-items: center;
}
body .wrapper .contact-container {
  background: #f5f5f5;
  transition: all ease-in 0.3s;
  border-radius: 0.25rem;
  justify-content: space-around;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.dark-theme body .wrapper .contact-container {
  background: #333333;
}
body .wrapper .contact-container div {
  margin: 0.25rem 1rem;
}
body .wrapper .contact-container div .icon {
  margin-right: 0.25rem;
}
body .wrapper .container {
  display: flex;
  justify-content: space-between;
}
body .wrapper .container .col {
  flex: 0 0 47%;
}
body .wrapper .container .section, body .wrapper .container .section .education {
  margin-bottom: 1rem;
}
body .wrapper .container .section p {
  margin: 0.25rem auto;
}
body .wrapper .container .section p.grey-text, body .wrapper .container .experience div, body .wrapper .container .education div {
  color: #666666;
  font-style: italic;
  font-size: 0.85rem;
  pointer-events: none;
  text-decoration: none;
}
body .wrapper .container .experience div, body .wrapper .container .education div {
  display: flex;
  justify-content: space-between;
}
body .wrapper .container .skills span {
  background: #eb5286;
  color: #ffffff;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  margin: 0.25rem auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
body .wrapper .container .examples ul {
  list-style-type: none;
  padding: 0;
}
body .wrapper .container .examples ul li {
  margin: 0.5rem auto;
}
body .wrapper .container .examples p {
  font-size: inherit;
  font-style: inherit;
  color: inherit;
}

@media (max-width: 600px) {
  html body .wrapper .contact-container {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
  }
  html body .wrapper .container {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  html body .wrapper {
    margin: 0;
  }
}
@media (min-width: 901px) and (max-width: 1099px) {
  html body .wrapper {
    margin: 1rem;
  }
}
