body {
  background: #161616;
  color: white;
  font-family: "Inter", sans-serif;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

img {
  width: 100%;
}

.lett-space {
  letter-spacing: 0.875em;
}

.active {
  font-weight: bold;
  color: #FF0653;
}

.scroll-active {
  background: #242424;
  box-shadow: 0 0.125em 1rem rgba(0, 0, 0, 0.1);
  justify-content: space-around;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 1em 2em;
  z-index: 999;
}

.wrapper {
  margin: 0 7.5em;
}

p {
  color: #b6b6b6;
  text-align: justify;
  line-height: 1.5rem;
}

a {
  text-decoration: none;
  color: white;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.menu {
  width: 2em;
  display: none;
}

.close {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin: 2rem 0;
  transition: 0.3s;
}
header ul {
  display: flex;
  list-style-type: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
header ul li {
  padding: 0 1.25rem;
}

section.hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2em;
  justify-content: space-around;
  align-items: stretch;
  align-content: center;
  padding: 2em 0 0 0;
}
section.hero .hero-title {
  font-size: 2.5rem;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
section.hero .hero-img {
  width: 100%;
}
section.hero .hero-img-mobile {
  display: none;
}
section.hero .tilted {
  background: #FF0653;
  padding: 0.15em 0.5em;
  display: inline-block;
  transform: rotate(5deg);
  border-radius: 0.125rem;
}

section.more-info {
  min-height: auto;
  background: #242424;
  padding: 3em 0;
}
section.more-info .more-info-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
section.more-info .more-info-card div:last-child {
  grid-column-start: 2;
  grid-column-end: 3;
}
section.more-info .more-info-card .info-card {
  border: 4px solid #FF0653;
  border-radius: 2px;
  padding: 2.375em 2em;
  position: absolute;
  top: 27em;
  max-width: 325px;
}
section.more-info .more-info-card .info-card h1 {
  font-size: 1.3rem;
  margin: 0;
}
section.more-info .experience-title {
  font-size: 1rem;
}

.prime-button {
  font-weight: bold;
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  align-content: space-between;
  background: #FF0653;
  border: 2px solid #FF0653;
  border-radius: 4px;
  padding: 0.875em 1em;
  transition: 0.5s ease-in-out;
}
.prime-button:hover {
  background: #242424;
  color: white;
  border: 2px solid #FF0653;
}

.w-50 {
  width: 50%;
}

section.skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  padding: 4em 0 2em 0;
}

section.project {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  padding: 2em 0;
}

.skills-group {
  text-transform: uppercase;
  background: #FF0653;
  padding: 0.5em 1em;
  font-size: 1.3rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  border: 0.25rem;
  background: #242424;
  border-radius: 0.25em;
  box-shadow: 5px 5px 10px #C3001B;
}
.card img {
  width: 100%;
  vertical-align: middle;
  height: 20vh;
}
.card .card-body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1 1 auto;
  padding: 2em;
}
.card .card-body h1 {
  font-size: 1.3rem;
  text-transform: uppercase;
}
.card .card-body h1 span.project-title {
  background-color: #FF0653;
  padding: 0.375em 1em;
}
.card .card-body ul {
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.card .card-body .prime-button {
  margin-top: auto;
}

.px-2 {
  padding: 0 2em 2em 2em;
}

.px {
  padding: 0 8em 0 8em;
}

section.contact {
  background: #242424;
  padding: 8em;
  text-align: center;
}
section.contact h1.contact-title {
  font-size: 1.3rem;
  text-transform: uppercase;
}
section.contact p {
  text-align: center;
}
section.contact .prime-button {
  width: 250px;
}

section.credit {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .open-nav {
    transform: translateX(0%);
  }
  .scroll-active {
    justify-content: space-between;
  }
  .no-scroll {
    overflow: hidden;
  }
  section.more-info .more-info-card .info-card {
    top: 25.5em;
  }
  .menu {
    width: 2em;
    display: block;
  }
  .wrapper {
    margin: 0 2em;
  }
  section.contact {
    padding: 8em 1em;
  }
  section.more-info .experience-title {
    font-size: 1.2rem;
  }
  .close {
    display: block;
    float: right;
    margin: 2em;
    width: 2em;
  }
  header nav {
    position: fixed;
    top: 0;
    right: 0;
    background: #242424;
    width: 100%;
    z-index: 999;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 6em;
  }
  header nav ul li {
    padding: 2em 0;
  }
  header nav ul li a {
    display: block;
    padding: 2em;
    width: 100%;
  }
  header nav ul li a:hover {
    background: #161616;
  }
}
@media only screen and (max-width: 414px) {
  section.hero {
    padding: 2em 0;
  }
  section.hero .hero-img {
    display: none;
  }
  .grid-col-span-2 {
    grid-column: span 2;
  }
  section.more-info .more-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.more-info .more-info-card .info-card {
    position: unset;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 414px) and (max-width: 413px) and (min-width: 360px) {
  section.hero .hero-title {
    font-size: 2rem;
  }
  section.more-info .more-info-card .info-card h1 {
    font-size: 1.2rem;
  }
  .card .card-body h1 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 414px) {
  section.skills {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.5em 0px;
    align-items: start;
  }
  section.skills div {
    height: auto;
  }
}
@media only screen and (max-width: 414px) {
  section.project {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5em 0px;
    align-items: start;
  }
  section.project .card {
    height: 100%;
  }
  section.project .card img {
    height: 25vh;
  }
}
@media only screen and (max-width: 414px) {
  section.contact {
    padding: 8em 0;
  }
}
@media only screen and (min-width: 1080px) {
  section.more-info {
    min-height: 20vh;
  }
}
@media only screen and (min-width: 1440px) {
  .wrapper {
    margin: 0 15em;
  }
  .card img {
    height: 30vh;
  }
  section.contact {
    padding: 12em;
  }
}
@media only screen and (min-width: 2560px) {
  .wrapper {
    margin: 0 45em;
  }
  section.contact {
    padding: 13.5em;
  }
  .card img {
    height: 25vh;
  }
}/*# sourceMappingURL=main.css.map */