@import url("https://fonts.googleapis.com/css2?family=Protest+Guerrilla&family=SUSE:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Paytone+One&display=swap");
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:root {
  --bgColor: #232222;
  --red: #FF3C65;
  --yellow: #FFD200;
  --blue: #00D1C1;
  --blueClear: #00d1c0a3;
  --clear: #23222200;
}

body {
  background-color: var(--bgColor);
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
}

.content {
  display: flex;
  margin-bottom: 2%;
}
@media (max-width: 500px) {
  .content {
    flex-direction: column;
  }
}

.nav {
  max-width: 50%;
  height: 40%;
  margin: 1%;
  margin-left: 6%;
  padding-top: 2%;
  padding-bottom: 2%;
  top: 0;
  position: sticky;
  background-color: var(--bgColor);
  display: flex;
}
@media (max-width: 500px) {
  .nav {
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    margin: 0%;
    padding-top: 5%;
    padding-left: 25%;
  }
}

.navContent {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  .navContent {
    padding-bottom: 2rem;
    width: 16rem;
  }
  .navContent.close {
    opacity: 0;
  }
}

.title {
  display: flex;
  height: 150px;
  width: 100%;
  margin-bottom: 20%;
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.title h1 {
  font-family: "Paytone One", sans-serif;
  transition: color 0.2s;
}
.title h1:hover, .title h1:focus {
  color: var(--red);
  cursor: pointer;
}
@media (max-width: 500px) {
  .title {
    font-size: 36px;
    height: 50px;
    margin-bottom: 4rem;
  }
}

.dots {
  display: flex;
  height: 10%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.dots .dot {
  margin-inline: 30px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.dots .dot:nth-child(1) {
  background-color: var(--red);
}
.dots .dot:nth-child(2) {
  background-color: var(--yellow);
}
.dots .dot:nth-child(3) {
  background-color: var(--blue);
}
@media (max-width: 500px) {
  .dots .dot {
    width: 1rem;
    height: 1rem;
  }
}
.dots:hover #red, .dots:focus #red {
  background-color: var(--yellow);
  translate: 0px -15%;
  transition: 0.15s ease-in-out;
}
.dots:hover #yellow, .dots:focus #yellow {
  background-color: var(--blue);
  translate: 0px -30%;
  transition: 0.15s ease-in-out;
  transition-delay: 0.05s;
}
.dots:hover #blue, .dots:focus #blue {
  background-color: var(--red);
  translate: 0px -45%;
  transition: 0.15s ease-in-out;
  transition-delay: 0.1s;
}
@media (max-width: 1000px) {
  .dots {
    height: 50px;
  }
}
@media (max-width: 500px) {
  .dots {
    height: 100%;
  }
}

.tabs {
  display: grid;
  height: 50%;
  width: 100%;
  margin-bottom: 5%;
  margin-top: 10%;
  justify-content: center;
  align-content: center;
  padding: 1%;
  font-size: 2rem;
  text-align: center;
}
.tabs .resume {
  padding-top: 2.5rem;
  transition: color 0.2s;
}
.tabs .resume:hover, .tabs .resume:focus {
  color: var(--red);
  cursor: pointer;
}
@media (max-width: 500px) {
  .tabs .resume {
    padding: 10px;
  }
}
.tabs .demoReel {
  padding-top: 2.5rem;
  transition: color 0.2s;
}
.tabs .demoReel:hover, .tabs .demoReel:focus {
  color: var(--yellow);
  cursor: pointer;
}
@media (max-width: 500px) {
  .tabs .demoReel {
    padding: 10px;
  }
}
.tabs .aboutMe {
  padding: 2.5rem;
  transition: color 0.2s;
}
.tabs .aboutMe:hover, .tabs .aboutMe:focus {
  color: var(--blue);
  cursor: pointer;
}
@media (max-width: 500px) {
  .tabs .aboutMe {
    padding: 10px;
  }
}
@media (max-width: 1000px) {
  .tabs {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .tabs {
    margin-bottom: 5px;
    margin-top: 10px;
    height: 200px;
  }
}

.socials {
  display: flex;
  justify-content: center;
  padding-top: 3%;
}
.socials .icon {
  width: 25%;
  max-height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: 20px;
}
.socials #email {
  background-image: url(../images/email.svg);
  height: 2rem;
  width: 2rem;
}
.socials #email:hover, .socials #email:focus {
  background-image: url(../images/emailYellow.svg);
  cursor: pointer;
}
.socials #linkedin {
  background-image: url(../images/linkedin.svg);
  height: 2rem;
  width: 2rem;
}
.socials #linkedin:hover, .socials #linkedin:focus {
  background-image: url(../images/linkedinRed.svg);
  cursor: pointer;
}
.socials #instagram {
  background-image: url(../images/instagram.svg);
  height: 2rem;
  width: 2rem;
}
.socials #instagram:hover, .socials #instagram:focus {
  background-image: url(../images/instagramBlue.svg);
  cursor: pointer;
}

.body {
  display: grid;
  max-width: 70%;
  margin-left: auto;
  align-content: center;
  justify-content: center;
  padding-right: 5%;
  padding-left: 3%;
  padding-top: 3%;
  flex: 1;
}
@media (max-width: 500px) {
  .body {
    width: 100%;
    padding-top: 0.5%;
    margin-inline: auto;
    margin-top: 5%;
  }
}

.header {
  height: 10%;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 3.5rem;
  text-align: center;
  align-content: center;
  margin-bottom: 5%;
}
.header h1 {
  font-family: "Paytone One", sans-serif;
}
@media (max-width: 1000px) {
  .header {
    font-size: 2.5rem;
  }
}
@media (max-width: 500px) {
  .header {
    font-size: 2rem;
  }
}

.reel {
  display: grid;
  background-color: var(--bgColor);
  margin-bottom: 5%;
}
.reel .demoReel {
  height: 100%;
  width: 100%;
  border-radius: 44px;
}
@media (max-width: 500px) {
  .reel .demoReel {
    border-radius: 30px;
  }
}

.projects ._title {
  margin-bottom: 5%;
  text-align: center;
  align-content: center;
  font-size: 4rem;
  font-family: sans-serif;
}
.projects ._title p {
  font-family: "Paytone One", sans-serif;
}
.projects .project {
  margin-block: 20px;
  height: 35rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 44px;
}
.projects .project.titleScale .info .name {
  font-size: 3rem;
}
@media (max-width: 500px) {
  .projects .project.titleScale .info .name {
    font-size: 2rem;
  }
}
.projects .project:hover, .projects .project:focus {
  cursor: pointer;
}
.projects .project:hover .info, .projects .project:focus .info {
  opacity: 1;
}
@media (max-width: 500px) {
  .projects .project {
    height: 16rem;
    border-radius: 30px;
  }
}
.projects .img-center {
  background-position: top;
}
.projects .info {
  width: 100%;
  height: 100%;
  background-color: var(--blueClear);
  color: white;
  padding: 30px;
  border-radius: 44px;
  transition: opacity ease 0.3s;
  opacity: 0;
  text-align: center;
  align-content: center;
}
.projects .info .name {
  font-family: sans-serif;
  font-size: 5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .projects .info .name {
    font-size: 48px;
  }
}
.projects .info .year {
  font-family: sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 500px) {
  .projects .info .year {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.projects .info .copy {
  width: 75%;
  font-family: sans-serif;
  font-size: 1.2rem;
  margin-inline: auto;
  margin-bottom: 65px;
}
@media (max-width: 500px) {
  .projects .info .copy {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}
.projects .info ul {
  justify-content: center;
  display: flex;
  gap: 20px;
}
@media (max-width: 500px) {
  .projects .info ul {
    gap: 10px;
  }
}
.projects .info li {
  border-radius: 55px;
  padding-block: 8px;
  padding-inline: 20px;
  color: white;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.projects .info li:nth-child(1) {
  background-color: var(--red);
}
.projects .info li:nth-child(2) {
  background-color: var(--yellow);
}
.projects .info li:nth-child(3) {
  background-color: var(--blue);
}
.projects .info li:nth-child(4) {
  background-color: var(--red);
}
.projects .info li:nth-child(5) {
  background-color: var(--yellow);
}
.projects .info li:nth-child(6) {
  background-color: var(--blue);
}
@media (max-width: 500px) {
  .projects .info li {
    padding-block: 4px;
    padding-inline: 10px;
    font-weight: 600;
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .projects .info {
    border-radius: 20px;
    padding: 10px;
  }
}

.p_project {
  display: grid;
}

.p_header {
  height: 100px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 4rem;
  text-align: center;
}
.p_header h1 {
  font-family: "Paytone One", sans-serif;
}
@media (max-width: 500px) {
  .p_header {
    font-size: 3rem;
  }
}

.p_short {
  height: 433px;
  width: 845px;
  border-radius: 44px;
  margin: auto;
}
@media (max-width: 1000px) {
  .p_short {
    height: 325px;
    width: 634px;
    border-radius: 20px;
    margin-inline: auto;
  }
}
@media (max-width: 500px) {
  .p_short {
    height: 217px;
    width: 423px;
    border-radius: 20px;
    margin-inline: auto;
  }
}

.p_info .creators {
  text-align: left;
  font-family: sans-serif;
  font-size: 16px;
  margin-bottom: 55px;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .p_info .creators {
    font-size: 12px;
    width: 75%;
    margin-left: 5%;
  }
}
.p_info .copy {
  text-align: left;
  font-family: sans-serif;
  font-size: 24px;
  margin-inline: auto;
  margin-bottom: 55px;
  margin-top: 10px;
  padding-right: 100px;
}
@media (max-width: 500px) {
  .p_info .copy {
    font-size: 16px;
    margin-left: 5%;
  }
}
.p_info ul {
  justify-content: left;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 500px) {
  .p_info ul {
    gap: 10px;
    margin-left: 5%;
  }
}
.p_info li {
  border-radius: 50px;
  padding-block: 8px;
  padding-inline: 20px;
  color: white;
  font-family: sans-serif;
  font-weight: 600;
}
.p_info li:nth-child(1) {
  background-color: var(--red);
}
.p_info li:nth-child(2) {
  background-color: var(--yellow);
}
.p_info li:nth-child(3) {
  background-color: var(--blue);
}
.p_info li:nth-child(4) {
  background-color: var(--red);
}
.p_info li:nth-child(5) {
  background-color: var(--yellow);
}
.p_info li:nth-child(6) {
  background-color: var(--blue);
}
@media (max-width: 500px) {
  .p_info li {
    padding-block: 4px;
    padding-inline: 10px;
    font-weight: 600;
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */