@charset "UTF-8";
header {
  padding-top: 2rem;
  margin-bottom: 6rem;
}

.header-home {
  min-height: 100vh !important;
}

.header-scroller a {
  position: absolute;
  bottom: 1.5rem;
  left: calc(50% - 9px);
  transform: translateY(-50%);
  -webkit-animation: bounce 1s infinite;
          animation: bounce 1s infinite;
}
.header-scroller a i {
  color: var(--black);
  font-size: 2rem;
}

@media only screen and (min-width: 500px) {
  header {
    padding-top: 4rem;
  }

  .header-scroller a {
    bottom: 2.5rem;
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
footer {
  background-color: var(--grey-light);
}

.footer-container {
  max-width: 1000px;
  max-width: 1000px;
  padding: 0rem 2rem;
  margin: 0 auto;
}

.social {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.social-links {
  display: flex;
  margin: 4rem auto 1rem auto;
}

.social-link {
  font-size: 2.5rem;
  margin: 0 0.75rem;
}

.github {
  color: var(--black);
}

.linkedin {
  color: var(--linkedin);
}

.credit {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 0;
}
.credit p {
  margin: 0 auto;
  text-align: center;
}

#copyright {
  margin-top: 0.8rem;
}

.nav-title {
  margin-bottom: 0;
  z-index: 2;
}
.nav-title a {
  font-size: 3rem;
  text-decoration: none;
  color: var(--black);
}
.nav-title a:hover {
  text-decoration: none;
}

.nav-subtitle {
  font-size: 2rem;
}

.brand-line {
  position: relative;
  top: -22px;
  border-top: 5px solid var(--brand);
  z-index: -1;
}

.primary-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
}

.nav-item {
  margin: 0.5rem 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--black);
  border-bottom: 3px solid var(--off-white);
  transition: all ease 0.3s;
}
.nav-item:hover {
  border-bottom: 3px solid var(--brand);
  text-decoration: none;
}
.nav-item:first-child {
  margin-left: 0;
}
.nav-item:last-of-type {
  margin-right: 0;
}

.nav-item-active {
  border-bottom: 3px solid var(--brand);
}

@media only screen and (min-width: 380px) {
  .nav-title a {
    font-size: 3.5rem;
  }

  .nav-subtitle {
    font-size: 2.5rem;
  }

  .nav-item {
    margin: 0.5rem 1rem;
  }
}
@media only screen and (min-width: 500px) {
  .nav-title a {
    font-size: 4rem;
  }

  .nav-subtitle {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 800px) {
  .nav-subtitle {
    font-size: 3.2rem;
  }
}
.about-me i {
  font-size: 6rem;
  top: -2rem;
  --fa-primary-color: var(--black);
  --fa-primary-opacity: 1;
  --fa-secondary-color: var(--brand);
  --fa-secondary-opacity: 1;
}
.about-me i:hover {
  transition: linear all 1s;
  -webkit-animation: hand-wave 1.5s 1;
          animation: hand-wave 1.5s 1;
}
.about-me span {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.about-me span::before {
  content: " ";
  background-color: var(--brand);
  border-radius: 1rem;
  margin-right: 1.5rem;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
}

@media only screen and (min-width: 550px) {
  .tech-list {
    grid-template-columns: repeat(3, minmax(140px, 200px));
  }
}
@-webkit-keyframes hand-wave {
  0% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
  20% {
    transform: rotate(-15deg);
    transform-origin: 100% 100%;
  }
  40% {
    transform: rotate(15deg);
    transform-origin: 100% 100%;
  }
  60% {
    transform: rotate(-15deg);
    transform-origin: 100% 100%;
  }
  80% {
    transform: rotate(8deg);
    transform-origin: 100% 100%;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
}
@keyframes hand-wave {
  0% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
  20% {
    transform: rotate(-15deg);
    transform-origin: 100% 100%;
  }
  40% {
    transform: rotate(15deg);
    transform-origin: 100% 100%;
  }
  60% {
    transform: rotate(-15deg);
    transform-origin: 100% 100%;
  }
  80% {
    transform: rotate(8deg);
    transform-origin: 100% 100%;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
}
.button {
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  background: var(--brand);
  color: var(--white);
  border-radius: 0.8rem;
  font-size: 1.3rem;
  box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}
.button a {
  display: inline-block;
  padding: 1.5rem 2.2rem 1.5rem 2rem;
  color: var(--white);
  text-decoration: none;
}
.button a:hover {
  text-decoration: none;
}
.button:hover {
  filter: brightness(0.9);
  cursor: pointer;
  transition: all ease 0.3s;
}
.button:hover i {
  color: var(--black);
  transform: translateX(5px);
}
.button i {
  margin-left: 0.8rem;
  font-size: 1rem;
  transition: all ease 0.3s;
}

.hero-button {
  background-color: var(--white);
}
.hero-button a {
  color: var(--black);
}
.hero-button:hover i {
  color: var(--brand);
}

@media only screen and (min-width: 500px) {
  .button {
    font-size: 1.8rem;
  }
  .button i {
    font-size: 1.5rem;
  }
}
.contact-section p {
  margin-bottom: 2rem;
}

.container {
  max-width: 1000px;
  padding: 0rem 2rem;
  margin: 0 auto;
}

@media only screen and (min-width: 830px) {
  .container {
    padding: 0rem 4rem;
  }
}
form {
  display: flex;
  flex-direction: column;
}
form > * {
  padding: 0;
  margin: 0 0 2.5rem 0;
  border: 0;
  outline: 0;
  box-shadow: none;
}
form * {
  font-size: 1.6rem;
  font-family: "Lexend Deca", sans-serif;
}
form input, form textarea {
  border: 2px solid var(--grey-light);
  background-color: inherit;
  color: var(--black);
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
  width: 100%;
}
form input:focus, form textarea:focus {
  outline: 2px solid var(--black);
}
form input ~ label, form textarea ~ label {
  color: var(--off-black);
  background-color: transparent;
}
form textarea {
  resize: none;
}

.form-item {
  position: relative;
}

input:not(:-moz-placeholder-shown):valid ~ label, input:not(:-moz-placeholder-shown) ~ label, textarea:not(:-moz-placeholder-shown):valid ~ label {
  left: 0.5rem;
  padding: 0.2rem 1.5rem;
  background-color: var(--off-white);
  transform: scale(0.85) translateY(-3.5rem);
  transform-origin: 4rem center;
}

input:not(:-ms-input-placeholder):valid ~ label, input:not(:-ms-input-placeholder) ~ label, textarea:not(:-ms-input-placeholder):valid ~ label {
  left: 0.5rem;
  padding: 0.2rem 1.5rem;
  background-color: var(--off-white);
  transform: scale(0.85) translateY(-3.5rem);
  transform-origin: 4rem center;
}

input:focus ~ label,
input:not(:focus):required:valid ~ label,
input:not(:placeholder-shown):valid ~ label,
input:not(:placeholder-shown) ~ label,
textarea:focus ~ label,
textarea:not(:focus):required:valid ~ label,
textarea:not(:placeholder-shown):valid ~ label {
  left: 0.5rem;
  padding: 0.2rem 1.5rem;
  background-color: var(--off-white);
  transform: scale(0.85) translateY(-3.5rem);
  transform-origin: 4rem center;
}

label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  margin: 0;
  pointer-events: none;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

p#contact-form-status {
  font-size: 2rem;
  margin-bottom: 0;
}

button.button {
  padding: 1.5rem 2.2rem 1.5rem 2rem;
  margin-bottom: 0;
}

.submitted-form {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border: 2px solid var(--brand);
  border-radius: 0.8rem;
}

.hero-section {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  margin: 6rem 0 10rem 0;
  border-radius: 10px;
  background-color: var(--brand);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 2.8rem;
  -webkit-animation: 1s ease-in 0s 1 slideinfromtop;
          animation: 1s ease-in 0s 1 slideinfromtop;
}
.hero-title span {
  color: var(--white);
}

.hero-subtitle {
  color: var(--grey-light);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5rem;
  margin-bottom: 3rem;
  -webkit-animation: 0.875s ease-in 0s 1 slideinfromleft;
          animation: 0.875s ease-in 0s 1 slideinfromleft;
}

.hero-button {
  -webkit-animation: 0.75s ease-in 0s 1 slideinfromleft;
          animation: 0.75s ease-in 0s 1 slideinfromleft;
}

.hero-img {
  display: none;
  margin-bottom: 30px;
  max-height: 120px;
}
.hero-img img {
  filter: grayscale(90%);
  height: 120px;
  width: 120px;
  border-radius: 100%;
}

@media only screen and (min-width: 500px) {
  .hero-title {
    font-size: 3.8rem;
    line-height: 3.2rem;
  }

  .hero-img {
    display: initial;
    max-height: 140px;
  }
  .hero-img img {
    height: 140px;
    width: 140px;
  }
}
@media only screen and (min-width: 700px) {
  .hero-section {
    flex-direction: row;
    padding: 60px;
  }

  .hero-title {
    font-size: 4.2rem;
    line-height: 4rem;
  }

  .hero-img {
    margin-left: 60px;
    margin-bottom: 0;
    max-height: 160px;
  }
  .hero-img img {
    height: 160px;
    width: 160px;
  }
}
@media only screen and (min-width: 830px) {
  .hero-title {
    font-size: 5.2rem;
    line-height: 5rem;
  }

  .hero-img {
    margin-left: 60px;
    margin-bottom: 0;
    max-height: 180px;
  }
  .hero-img img {
    height: 180px;
    width: 180px;
  }
}
@-webkit-keyframes slideinfromtop {
  0% {
    transform: translate3d(0, -100px, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes slideinfromtop {
  0% {
    transform: translate3d(0, -100px, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes slideinfromleft {
  0% {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes slideinfromleft {
  0% {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.fab, .fas {
  font-size: 3rem;
  margin-right: 1rem;
}

.fa-html5 {
  color: var(--html);
}

.fa-css3-alt {
  color: var(--css);
}

.fa-sass {
  color: var(--sass);
}

.fa-js {
  color: var(--javascript);
}

.fa-php {
  color: var(--php);
}

.fa-database {
  color: var(--sql);
}

.fa-wordpress {
  color: var(--wordpress);
}

li {
  font-size: 1.6rem;
  font-weight: 300;
}
li::marker {
  content: "";
}
li::before {
  content: "•";
  margin: 0 1rem 0 0.5rem;
}

.location-marker {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.location-marker i {
  font-size: 3rem;
  color: var(--brand);
}
.location-marker p {
  margin-left: 1rem;
  font-size: 2rem;
  margin-bottom: 0;
}

::-webkit-scrollbar {
  width: 8px;
  background: var(--grey-light);
}

::-webkit-scrollbar-thumb {
  background: var(--off-black);
  width: 8px;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

section {
  margin: 0 0 6rem 0;
}
section h2 span {
  color: var(--brand);
  font-weight: 700;
}

.title-section {
  border-bottom: 2px solid var(--grey-light);
}

.visually-hidden {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  top: auto;
}

.work-example {
  display: flex;
  flex-direction: column;
  margin: 0 0 8rem 0;
}
.work-example-screenshot {
  margin: 0 0 2rem 0;
}
.work-example-screenshot a:hover img {
  transform: scale(1.03);
}
.work-example-screenshot img {
  width: 100%;
  transition: all ease 0.3s;
}
.work-example-text p {
  line-height: 2.2rem;
  margin-top: 1rem;
}
.work-example-text a {
  font-size: 1.6rem;
}
.work-example-technologies {
  margin-top: 2rem;
}

@media only screen and (min-width: 800px) {
  .work-example {
    flex-direction: row;
  }
  .work-example-screenshot {
    margin: 0 4rem 0 0;
  }
  .work-example-screenshot img {
    width: 400px;
    height: 267px;
  }

  .row-reverse {
    flex-direction: row-reverse;
  }
}
:root {
  --black: hsl(210, 11%, 15%);
  --off-black: hsl(210, 11%, 18%);
  --grey-light: hsl(0, 0%, 93%);
  --off-white: hsl(0, 0%, 97%);
  --white: hsl(0, 0%, 100%);
  --brand: hsl(0, 73%, 59%);
  --github: hsl(0, 0%, 0%);
  --linkedin: hsl(207, 57%, 44%);
  --html: hsl(13, 77%, 52%);
  --css: hsl(228, 78%, 52%);
  --sass: hsl(330, 50%, 60%);
  --javascript: hsl(52, 84%, 63%);
  --php: hsl(229, 29%, 64%);
  --sql: hsl(206, 80%, 48%);
  --wordpress: hsl(199, 65%, 37%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --black: hsl(0, 0%, 97%);
    --off-black: hsl(0, 0%, 97%);
    --grey-light: hsl(210, 11%, 23%);
    --off-white: hsl(210, 11%, 18%);
    --white: hsl(210, 11%, 15%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

body {
  font-family: "Lexend Deca", sans-serif;
  background-color: var(--off-white);
  color: var(--black);
}

h1 {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 8rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 4.2rem;
  margin-bottom: 1rem;
}

p {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.3rem;
  margin-bottom: 1.5rem;
}

a {
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand);
}
a:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}/*# sourceMappingURL=main.css.map */