@font-face {
  font-family: poppins;
  src: url("./fonts/Montserrat-Light.ttf");
}
@font-face {
  font-family: poppins-bold;
  src: url("./fonts/Montserrat-Bold.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: poppins;
}

.button {
  background-color: rgb(255, 188, 5);
  padding: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  color: black;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.54rem;
}

p {
  color: #fff;
}

.page {
  min-height: 100vh;
  padding: 5rem;
}

.section-heading {
  color: rgb(255, 188, 5);
}

button {
  background-color: rgb(255, 188, 5);
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: proximity;
}

body {
  background-color: rgb(0, 0, 0);
}
body .container header {
  display: flex;
  justify-content: space-between;
  position: sticky;
  padding: 1rem 5rem;
  top: 0;
  background-color: black;
}
body .container header div span {
  color: rgb(255, 188, 5);
  font-family: poppins-bold;
}
body .container header nav a {
  color: rgb(255, 188, 5);
  text-decoration: none;
  margin: 0 0.5rem;
  cursor: pointer;
}
body .container .landing {
  display: flex;
  align-items: center;
}
body .container .landing .left {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}
body .container .landing .left span {
  color: rgb(255, 188, 5);
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 5rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  border-right: 5px solid;
  animation: typewriter 3s steps(13) forwards, blink 1s step-end infinite;
}
body .container .landing .left p {
  color: #fff;
  line-height: 2rem;
}
body .container .landing .left a {
  margin: 1rem 0;
}
body .container .landing .right {
  flex: 1;
}
body .container .landing .right img {
  height: 100%;
}
body .container .intro {
  display: flex;
  justify-content: space-between;
}
body .container .intro div img {
  width: 60%;
  margin-right: 5rem;
}
body .container .intro div p {
  line-height: 2rem;
  animation: revealText linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
body .container .projects .cards-container {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
body .container .projects .cards-container .project-card {
  margin: 0 1rem;
  overflow: hidden;
  animation: revealText linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
body .container .projects .cards-container .project-card img {
  width: 100%;
  height: 40%;
}
body .container .projects .cards-container .project-card p {
  padding: 1rem 0;
}
body .container .projects .cards-container .project-card a {
  color: rgb(255, 188, 5);
  text-decoration: none;
  font-weight: 600;
}
body .container .skills .logos-container {
  padding: 2rem 0;
}
body .container .skills h2 {
  color: rgb(255, 188, 5);
}
body .container .skills img {
  width: 6rem;
  margin: 1rem;
}
body .container footer {
  padding: 2rem;
  color: #fff;
}
body .container footer .contact_me {
  display: flex;
  justify-content: center;
}
body .container footer .contact_me i {
  padding: 0.5rem;
  cursor: pointer;
}
body .container footer .contact_me i:hover {
  color: rgb(255, 188, 5);
}
body .container footer span {
  text-align: center;
  display: block;
  margin: auto;
}

@keyframes revealText {
  from {
    opacity: 0;
    transform: translatey(-80px);
  }
  to {
    opacity: 1;
    transform: translatey(0px);
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@media only screen and (max-width: 660px) {
  .page {
    padding: 0;
  }
  .container {
    padding: 0;
  }
  .container .header {
    padding: 1rem;
    z-index: 1;
  }
  .container .landing {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .container .landing .left {
    padding: 1rem;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.281), rgb(0, 0, 0));
    padding-bottom: 5rem;
  }
  .container .landing .left span {
    font-size: 1rem;
  }
  .container .intro {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    align-items: center;
  }
  .container .intro div {
    height: 50%;
    display: flex;
    justify-content: center;
    flex: 1;
  }
  .container .intro div img {
    width: 100%;
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
  .container .projects .cards-container {
    flex-direction: column;
  }
  .container .projects .cards-container .project-card {
    padding: 2rem 0;
  }
}/*# sourceMappingURL=styles.css.map */