/*#e02741 another red*/
/* 60% */
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #131313;
  color: #e5e5e5;
  margin: 0;
}

.container {
  height: 100vh;
}

.section-content {
  min-height: 100vh;
  scroll-snap-align: start;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-text {
  color: #a1a1a1;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

.section-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-contrast {
  background-color: #131313;
  color: #e5e5e5;
}

.grainy-card {
  background-color: #e5e5e5;
  color: #010101;
  position: relative;
  overflow: hidden;
}

.grainy-card-content {
  position: relative;
  z-index: 1;
}

.grainy-card::before {
  content: "";
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 181px;
  opacity: 0.4;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.card {
  margin: 7%;
  width: 100vw;
  padding: 5%;
  position: relative;
  overflow: hidden;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.card-title {
  text-align: left;
  margin-right: auto;
  line-height: 1;
}

.card-title h1 {
  font-size: 3.5rem;
}

.card-title p {
  font-size: 1.25rem;
}

.card-nav a {
  text-decoration: none;
  color: inherit;
}

.card-nav a:hover {
  color: #e02741;
}

.card-nav li {
  list-style: none;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.card-body {
  text-align: right;
  margin: 5rem 0 1rem auto;
  font-size: 0.875rem;
  max-width: 26ch;
  line-height: 1.5em;
}

.card-footer {
  text-align: right;
  margin-left: auto;
}

.open-sans-regular {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 340;
  font-variation-settings: "wdth" 100;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.uppercase {
  text-transform: uppercase;
}

.content {
  display: flex;
  flex-direction: column;
  padding: 7% 7%;
}

.technologies-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.tech-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em 1rem;
  background-color: #131313;
  color: #e5e5e5;
  border: solid 1px #e5e5e5;
  border-radius: 78px;
}

.tech-badge iconify-icon {
  font-size: 1.5rem;
}

.tech-badge h4 {
  margin: 0 0 0 4px;
}

a:link, a:visited .no-decotarion {
  text-decoration: none;
}

.tech-badge:hover {
  background-color: #e02741;
  color: #f0eae9;
}

.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  background-color: #e5e5e5;
  border: solid #131313 1px;
}

.project-card-header {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 9 / 16 = 0.5625 = 56.25% */
  overflow: hidden;
}

.project-card-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  align-content: space-around;
  height: 100%;
  gap: 1.25rem;
  padding: 1.25rem;
}

.project-card-body * {
  margin: 0;
  color: black;
}

.project-card-body a:hover {
  color: #e02741;
}

.snippets {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.snippet {
  background-color: #e5e5e5;
  color: #131313;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75em 1em;
  border-radius: 25px;
}

.snippet-red {
  background-color: #e5e5e5;
  color: #131313;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4em 0.5em;
  border-radius: 6px;
}

.snippet h4 {
  margin: 0;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-size: 1rem;
}

.nav a {
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 700;
}

.project {
  background-color: #131313;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 5% 18%;
  font-size: 1.25rem;
  line-height: 2rem;
}

.project-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-style: italic;
  font-size: 1.125rem;
  line-height: normal;
}

.project-title {
  font-size: 2rem;
}

.project-role {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.project-stack {
  line-height: normal;
  justify-content: center;
}

.project-text {
  color: #a1a1a1;
  text-align: justify;
}

.project-text strong {
  color: #e02741;
}

.project-content p {
  margin-bottom: 1rem;
}

.splide__slide img {
  width: 100%;
  height: auto;
}

.splide__slide {
  opacity: 0.4;
}

.splide__slide.is-active {
  opacity: 1;
}

.pswp__custom-caption {
  background: rgba(75, 150, 75, 0.75);
  font-size: 16px;
  color: #fff;
  width: calc(100% - 32px);
  max-width: 400px;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
}

.halftone {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  filter: contrast(2000%);
  overflow: hidden;
}

.halftone::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  bottom: -50%;
  right: -50%;
  background: radial-gradient(circle at center, #333, #fff);
  background-size: 0.25rem 0.25rem;
  transform: rotate(20deg);
}

.halftone img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: hard-light;
  filter: grayscale(0.4) brightness(70%) contrast(100%) blur(0);
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.contact h1 {
  font-size: 7rem;
}

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
  margin: auto;
  font-size: 5rem;
}

.contact-info a {
  color: #e02741;
}

.contact-mail a {
  font-size: 3rem;
  font-weight: 600;
  color: #e5e5e5;
}

.contact-info a:link, a:visited .no-decotarion {
  color: #e02741;
  text-decoration: none;
}

.carousel-caption {
  font-size: 1rem;
  color: #e5e5e5;
  margin: 10px 0;
}

#footer {
  padding: 1%;
}

@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@media (min-width: 1200px) {
  .card {
    margin: 0 20%;
    padding: 2%;
  }
  .content {
    padding: 2% 20%;
  }
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .project {
    padding: 7%;
  }
  .nav {
    font-size: 0.625rem;
  }
  .card {
    padding: 7%;
  }
  .card-title h1 {
    font-size: 2.125rem;
  }
  .card-title p {
    font-size: 0.875rem;
  }
  .card-footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .section-title {
    font-size: 2rem;
  }
  .technologies-container {
    gap: 1rem;
  }
  .section-text {
    text-align: center;
    font-size: 1rem;
  }
  .contact h1 {
    font-size: 3rem;
  }
  .contact-info {
    font-size: 3rem;
  }
  .contact-mail a {
    font-size: 1.625rem;
  }
  .grainy-card::before {
    opacity: 0.5;
  }
  .carousel-caption {
    line-height: normal;
    font-size: 0.875rem;
  }
  .project {
    text-align: left;
    font-size: 1.125;
    line-height: 30px;
    font-weight: 400;
    gap: 3rem;
  }
  .project-title {
    font-size: 1.875rem;
  }
  .project-data {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .project-role {
    line-height: normal;
  }
  .project-content h1 {
    font-size: 1.625rem;
    text-align: left;
  }
  .project-text {
    text-align: left;
  }
}

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