@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;300&family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #111;
  color: white;
}
body .outer-wrapper {
  width: 100vh;
  height: 100vw;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body .outer-wrapper .container {
  width: 300vw;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
  /* background-color: green; */
  display: flex;
}
body .outer-wrapper .container section {
  transform: translateY(10vh);
  scroll-margin-left: 6rem;
  scroll-snap-align: start;
  height: 90vh;
  width: 100vw;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  /* &:nth-of-type(1){
      background-color: rgb(10, 10, 10);
  } */
  /* &:nth-of-type(2){
      // background-color: rgb(20, 21, 31);
  }

  &:nth-of-type(3){
      // background-color: rgb(49, 5, 22);
  } */
}
body .outer-wrapper .container section h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10rem;
}
body ::-webkit-scrollbar {
  display: none;
}
body nav {
  position: fixed;
  flex-direction: row;
  width: 100vw;
  height: 10vh;
  z-index: 1;
  font-size: 1.5rem;
}
body nav ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
}
body nav li {
  transition: 0.3s;
  height: 10vh;
  flex: 1 1 auto;
  align-self: center;
  border-color: rgba(28, 231, 238, 0.918);
  border-style: solid;
  border-width: 0px 0px 1px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body nav li a {
  transition: 0.5s;
}
body nav li a:visited {
  text-decoration: none;
  color: white;
}
body nav li a:link {
  text-decoration: none;
  color: white;
}
body nav li a:hover {
  text-decoration: none;
  transform: scale(112%);
  cursor: pointer;
  color: rgb(233, 45, 186) !important;
}
body nav li a:active {
  text-decoration: none;
  color: white;
}
body .outer-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: sticky;
  left: 0;
  top: 0;
  display: block;
  background-image: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fbg2-u.png?alt=media&token=fa51faee-1796-4fc1-b17d-ddb23a68339b");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}
body .inner-wrapper {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(28, 231, 238, 0.918);
  border-radius: 20px;
  z-index: 0;
  width: 60%;
  height: 80%;
  position: relative;
}
body .inner-wrapper::before {
  border-radius: 20px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-image: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fbg.jpg?alt=media&token=e5497156-cc57-4dc7-ba1f-06c176261b7b");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  mix-blend-mode: overlay;
}
body .inner-wrapper .inner-box {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  background-color: #161616;
  bottom: 0px;
  /* .bg{
      height:100%;
      width:100%;
      opacity:65%;
      mix-blend-mode: overlay;
  } */
}
body .inner-wrapper .my-img {
  opacity: 70%;
  position: absolute;
  height: 80%;
  right: 0px;
  bottom: 0px;
  filter: drop-shadow(20px 7px 20px #161616);
  filter: sepia(80%) brightness(70%) hue-rotate(270deg);
}
body .inner-wrapper .home-header {
  position: absolute;
  top: 30px;
  left: -4rem;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
}
body .inner-wrapper .nh {
  color: rgb(201, 19, 125);
}
body .inner-wrapper .bio {
  position: absolute;
  padding-top: 15rem;
  padding-left: 5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 3rem;
}
body .inner-wrapper .learn-more {
  margin-top: 4rem;
  transition: 0.5s;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  bottom: -7rem;
  left: 0.1rem;
  width: 14rem;
  height: 4rem;
  background-color: transparent;
  border: solid 1px rgb(201, 19, 125);
  color: white;
  border-radius: 15px;
}
body .inner-wrapper .learn-more:hover {
  transform: scale(105%);
  cursor: pointer;
}
body #edu {
  display: flex;
  justify-content: space-around;
}
body #edu .certificate-heading {
  font-size: 3rem;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
}
body #edu .certificates-holder {
  padding-left: 3rem;
  padding-right: 3rem;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body #edu .certificate-card {
  transition: 0.5s;
  display: flex;
  gap: 1rem;
  width: auto;
  border: solid 1px white;
  border-radius: 5px;
  align-items: center;
}
body #edu .certificate-card:hover {
  cursor: pointer;
  transform: scale(110%);
}
body #edu .certificate-card img {
  padding-left: 1rem;
  padding-right: 1rem;
  border-right: 1px solid white;
  width: 64px;
  height: 64px;
}
body #edu .cert-info {
  padding: 1rem;
  font-size: 2rem;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  display: flex;
  flex-direction: column;
}
body #edu .cert-info .institution {
  font-weight: bold;
}
body .e-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
body .e-container .holder {
  display: flex;
  justify-content: space-evenly;
}
body .e-container .holder .e-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  padding-top: 5rem;
}
body .e-container .holder img {
  transition: 0.5s;
  position: relative;
  height: 20rem;
  width: auto;
  filter: hue-rotate(90deg);
  /* &::after, &::before{
      position:absolute;
      width: 100%;
      height: 100%;
      content: "";
      background: #EC008C;
      mix-blend-mode: multiply;
      top:0px;
  } */
}
body .e-container .holder img:hover {
  cursor: pointer;
  transform: translate(0, -7px);
  color: red;
}
body .e-container .ncs-holder img {
  transition: 0.5s;
  height: 25rem;
  filter: sepia();
  filter: brightness(100);
  z-index: 100;
  width: auto;
}
body .e-container .ncs-holder img:hover {
  cursor: pointer;
  transform: translate(0, -7px);
}
body .circle-container {
  text-align: center;
  position: relative;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  padding: 0;
  list-style: none;
  margin: 5em auto 0;
}
body .circle-container .skill-text {
  text-align: center;
}
body .circle-container span {
  left: 0rem;
  font-size: 3rem;
  font-family: "Barlow Condensed", sans-serif;
}
body .circle-container > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4.5rem;
  width: 9rem;
  height: 9rem;
}
body .circle-container > *:nth-of-type(1) {
  transform: rotate(0deg) translate(15rem) rotate(0deg);
}
body .circle-container > *:nth-of-type(2) {
  transform: rotate(45deg) translate(15rem) rotate(-45deg);
}
body .circle-container > *:nth-of-type(3) {
  transform: rotate(90deg) translate(15rem) rotate(-90deg);
}
body .circle-container > *:nth-of-type(4) {
  transform: rotate(135deg) translate(15rem) rotate(-135deg);
}
body .circle-container > *:nth-of-type(5) {
  transform: rotate(180deg) translate(15rem) rotate(-180deg);
}
body .circle-container > *:nth-of-type(6) {
  transform: rotate(225deg) translate(15rem) rotate(-225deg);
}
body .circle-container > *:nth-of-type(7) {
  transform: rotate(270deg) translate(15rem) rotate(-270deg);
}
body .circle-container > *:nth-of-type(8) {
  transform: rotate(315deg) translate(15rem) rotate(-315deg);
}
body .circle-container img {
  display: block;
  max-width: 100%;
  filter: grayscale(100%);
  transition: 0.7s;
}
body .circle-container img:hover {
  transform: rotateY(360deg) scale(120%);
  filter: grayscale(0);
  cursor: pointer;
}
body #skills {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
body #skills .experience {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
body #skills .experience .c {
  transition: 0.3s;
  display: inline-block;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  border: 1px solid white;
}
body .typing-speed {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
}
body #projects {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(3, auto);
  justify-content: space-around;
}
body #projects .project-row-2 {
  display: flex;
  grid-column: 1/4;
}
body #projects .ps {
  grid-column: 3/4;
  justify-self: end;
}
body #projects .card {
  border-radius: 20px;
  background-size: cover;
  max-width: 500px;
  margin: auto;
  height: auto;
  padding: 40px;
  position: relative;
  color: #fff;
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
body #projects .card::before {
  border-radius: 20px;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
body #projects .card .content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  transform: translateZ(12px);
}
body #projects .card .content p {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 20px;
}
body #projects .card .content a {
  text-decoration: none;
}
body #projects .card .content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}
body #projects .card .content button {
  font-family: "Roboto", sans-serif;
  background: #161616;
  border: 1px solid rgba(28, 231, 238, 0.918);
  border-radius: 30px;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
  width: 120px;
  color: #fff;
}
body #projects .Invert {
  background: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fprojects%2FInvert.png?alt=media&token=90db1519-8b2d-4500-9139-103d4d9a437c") no-repeat;
  background-size: cover;
}
body #projects .FanPage {
  background: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fprojects%2FFanPage.png?alt=media&token=8987c1b0-0973-476f-b20d-910bcd154e88") no-repeat;
  background-size: cover;
}
body #projects .TicTacToe {
  background: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fprojects%2FXO.png?alt=media&token=01547ee8-e514-403f-8ba0-fd9651430e7b") no-repeat;
  background-size: cover;
}
body #projects .dbms {
  background: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fprojects%2Fdbms.png?alt=media&token=c3ba7f50-b614-400c-9897-fb8e9c40cbeb") no-repeat;
  background-size: cover;
}
body #projects .ps {
  background: url("https://firebasestorage.googleapis.com/v0/b/nhportfolio-c5898.appspot.com/o/img%2Fprojects%2Fpics.png?alt=media&token=91bfc37b-11d9-4dbb-bd53-4746cd686f5a") no-repeat;
  background-size: cover;
}
@media (prefers-reduced-motion) {
  body .card {
    transform: none !important;
  }
}
body .reach-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
body .reach-container img {
  width: 20px;
  height: auto;
}
body .reach-container .img-container {
  height: 100%;
  position: relative;
}
body .reach-container .img-container img {
  cursor: pointer;
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
body .reach-container .img-container:hover :nth-child(2) {
  opacity: 0;
}/*# sourceMappingURL=styles.css.map */