:root {
  --red: hsl(0, 79%, 38%);
  --charcoal: hsl(0, 14%, 9%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--white);
  background-color: var(--charcoal);
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

h3 {
  font-size: 1.375rem;
  font-weight: 500;
}

h4 {
  font-size: 1.5rem;
  font-weight: 400;
}

h5 {
  font-size: 1.875rem;
  font-weight: 900;
}

a, a:hover {
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--white);
  transition: all 0.1s ease-in-out;
}
a:hover, a:hover:hover {
  color: var(--red);
}

ul {
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  margin: 0;
  padding: 0;
}

.nav-wrapper {
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: var(--charcoal);
  transition: all 0.1s ease;
}
.nav-wrapper .nav-box {
  max-width: 75rem;
  height: 5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.nav-wrapper .nav-box .main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
}
.nav-wrapper .nav-box .main-nav ul li a {
  margin-left: 2.1875rem;
}
.nav-wrapper .nav-box .nav-btn {
  display: none;
}

.active {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.15) 0px 0.125em 0.5em;
}

.main-wrapper {
  padding-top: 8.75rem;
}
.main-wrapper .hero-wrapper,
.main-wrapper .work-wrapper,
.main-wrapper .projects-wrapper,
.main-wrapper .playground-wrapper,
.main-wrapper .resume-wrapper {
  max-width: 75rem;
  margin: 0 auto;
}
.main-wrapper .work-wrapper,
.main-wrapper .projects-wrapper,
.main-wrapper .playground-wrapper {
  padding-top: 7.5rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2.5rem;
}
.main-wrapper .hero-wrapper {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.main-wrapper .hero-wrapper .hero-img {
  width: 50%;
}
.main-wrapper .hero-wrapper .hero-img img {
  width: 100%;
}
.main-wrapper .hero-wrapper .hero-text {
  width: 50%;
  padding: 2.5rem;
}
.main-wrapper .hero-wrapper .hero-text h4 {
  margin: 1.25rem 0 1.875rem;
}
.main-wrapper .hero-wrapper .hero-text .hero-socials {
  display: flex;
  margin-top: 1.25rem;
}
.main-wrapper .hero-wrapper .hero-text .hero-socials a {
  margin-right: 1.25rem;
}
.main-wrapper .hero-wrapper .hero-text .hero-socials a img {
  width: 25px;
  transition: all 0.1s ease-in-out;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.main-wrapper .hero-wrapper .hero-text .hero-socials a img:hover {
  filter: invert(19%) sepia(34%) saturate(6857%) hue-rotate(351deg) brightness(82%) contrast(96%);
}
.main-wrapper .section-header {
  border-top: 2px solid var(--white);
  grid-column: 1;
}
.main-wrapper .section-header h2 {
  margin: 1.25rem 0 2.5rem 0;
}
.main-wrapper .section-content {
  grid-column: 2/4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.main-wrapper .section-content figure {
  background-color: var(--black);
  transition: all 0.1s ease-in-out;
}
.main-wrapper .section-content figure img {
  width: 100%;
}
.main-wrapper .section-content figure:hover {
  transform: scale(1.01);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em;
}
.main-wrapper .section-content figure figcaption {
  padding: 1.5625rem;
}
.main-wrapper .section-content figure figcaption p {
  margin: 0 0 0.625rem;
  font-style: italic;
  font-size: 1rem;
}
.main-wrapper .section-content figure figcaption a {
  display: block;
  margin: 0.3125rem 0 0;
  color: var(--red);
}
.main-wrapper .section-content figure figcaption a:hover {
  color: var(--white);
}
.main-wrapper .resume-wrapper {
  padding-top: 7.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.main-wrapper .resume-wrapper .resume-header {
  border-top: 2px solid var(--white);
}
.main-wrapper .resume-wrapper .resume-header h2 {
  margin-top: 1.25rem;
}
.main-wrapper .resume-wrapper .resume-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.main-wrapper .resume-wrapper .resume-content h3 {
  margin-bottom: 0.625rem;
}

.footer {
  width: 100%;
  margin-top: 7.5rem;
}
.footer .footer-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  padding: 3.125rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.footer .footer-wrapper .footer-contact a {
  color: var(--red);
}
.footer .footer-wrapper .footer-contact a:hover {
  color: var(--white);
}
.footer .footer-wrapper .footer-social {
  display: flex;
}
.footer .footer-wrapper .footer-social a {
  margin-right: 1.25rem;
}
.footer .footer-wrapper .footer-social a img {
  width: 25px;
  transition: all 0.1s ease-in-out;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.footer .footer-wrapper .footer-social a img:hover {
  filter: invert(19%) sepia(34%) saturate(6857%) hue-rotate(351deg) brightness(82%) contrast(96%);
}

@media screen and (max-width: 1250px) {
  .nav-wrapper .nav-box {
    max-width: 100%;
    padding: 0 1.25rem;
  }
  .hero-wrapper,
  .work-wrapper,
  .projects-wrapper,
  .playground-wrapper,
  .resume-wrapper {
    max-width: 100%;
    padding: 0 1.25rem;
  }
  .section-content figure img {
    width: 100%;
  }
  .footer .footer-wrapper {
    max-width: 100%;
    padding: 3.125rem 1.25rem;
  }
}
@media screen and (max-width: 1000px) {
  .hero-wrapper {
    flex-direction: column-reverse !important;
  }
  .hero-wrapper .hero-img {
    width: 100% !important;
  }
  .hero-wrapper .hero-text {
    width: 100% !important;
    padding: 0 0 2.5rem 0 !important;
  }
  .section-content {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media screen and (max-width: 900px) {
  .resume-wrapper .resume-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
}
@media screen and (max-width: 800px) {
  .work-wrapper,
  .projects-wrapper,
  .playground-wrapper {
    grid-template-columns: 1fr 1fr !important;
  }
  .section-content {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 700px) {
  .nav-wrapper .nav-box .main-nav {
    display: none;
    justify-content: flex-end;
    padding: 1.25rem;
    width: 100%;
    position: absolute;
    top: 5rem;
    right: 0;
    background-color: var(--black);
  }
  .nav-wrapper .nav-box .nav-btn {
    display: block;
    cursor: pointer;
  }
  .work-wrapper,
  .projects-wrapper,
  .playground-wrapper {
    grid-template-columns: 1fr !important;
  }
  .section-header {
    grid-row: 1 !important;
  }
  .section-content {
    grid-row: 2 !important;
    grid-column: 1 !important;
    grid-template-columns: 1fr 1fr !important;
  }
}
@media screen and (max-width: 470px) {
  h1 {
    font-size: 3.125rem;
  }
  .nav-wrapper .nav-box .main-nav {
    justify-content: center !important;
  }
  .nav-wrapper .nav-box .main-nav ul {
    flex-direction: column !important;
  }
  .nav-wrapper .nav-box .main-nav ul li {
    margin-bottom: 10px !important;
  }
  .nav-wrapper .nav-box .main-nav ul li a {
    margin-left: 0;
  }
  .section-header h2 {
    margin: 1.25rem 0;
  }
  .section-content {
    grid-row: 2 !important;
    grid-column: 1 !important;
    grid-template-columns: 1fr !important;
  }
  .resume-wrapper .resume-content {
    grid-template-columns: 1fr !important;
  }
  .footer {
    margin-top: 5rem;
  }
  .footer .footer-wrapper {
    flex-direction: column;
  }
  .footer .footer-wrapper .footer-social {
    margin-top: 2.5rem;
  }
}/*# sourceMappingURL=style.css.map */