@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap');

:root {
  --yellow: #ce93d8;
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  /* text-transform: lowercase; */
  transition: all 0.2s linear;
}

*::selection {
  background: var(--yellow);
  color: #333;
}

html {
  font-size: 68.5%;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1.4rem;
}

html::-webkit-scrollbar-track {
  background: #222;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

body {
  background: #111;
  overflow-x: hidden;
  padding-left: 35rem;
}

section {
  min-height: 100vh;
  padding: 1rem;
}

.btn {
  padding: 0.7rem 3rem;
  background: #333;
  color: #fff;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 2rem;
  border-radius: 5rem;
}

.btn i {
  padding: 0 0.5rem;
  font-size: 1.8rem;
}

.btn:hover {
  background-color: var(--yellow);
}

.heading {
  text-align: center;
  margin: 0 6rem;
  font-size: 4rem;
  padding: 1rem;
  border-bottom: 0.1rem solid #fff4;
  color: #fff;
}

.heading span {
  color: var(--yellow);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 35rem;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

header .user img {
  height: 17rem;
  width: 17rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 0.7rem solid var(--yellow);
}

header .user .name {
  font-size: 3.5rem;
  color: #fff;
}

header .user .post {
  font-size: 2rem;
  color: #eee;
}

header .navbar {
  width: 100%;
}

header .navbar ul {
  list-style: none;
  padding: 1rem 3rem;
}

header .navbar ul li a {
  display: block;
  padding: .5rem;
  margin: 1.5rem 0;
  background: #333;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 5rem;
}

header .navbar ul li a:hover {
  background: var(--yellow);
}

#menu {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: none;
}

.home {
  background: url("stike.jpg") top center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 15rem;
}

.home h3 {
  font-size: 2.5rem;
  color: #fff;
}

.home h1 {
  font-size: 5rem;
  color: #fff;
}

.home h1 span {
  color: var(--yellow);
}

.home p {
  font-size: 2rem;
  color: #eee;
  padding: 1rem 0;
}

.about .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.about .row .info {
  flex: 1 1 48rem;
  padding: 2rem 1rem;
  padding-left: 6rem;
}

.about .row .info h3 {
  font-size: 2rem;
  color: var(--yellow);
  padding: 1rem 0;
  font-weight: normal;
}

.about .row .info h3 span {
  color: #eee;
  padding: 0 0.5rem;
}

.about .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.about .row .counter .box {
  width: 20rem;
  background: #222;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
}

.about .row .counter .box span {
  font-size: 4rem;
  color: var(--yellow);
}

.about .row .counter .box h3 {
  font-size: 2rem;
  color: #fff;
}

.education .box-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
  padding-left: 3rem;
}

.education .box-container .box {
  width: 50rem;
  margin: 4rem 1rem;
  padding-left: 4rem;
  border-left: .2rem solid #fff;
  position: relative;
}

.education .box-container .box span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: .5rem 2.5rem;
}

.education .box-container .box h3 {
  font-size: 2rem;
  color: #fff;
  padding-top: 1.5rem;
}

.education .box-container .box p {
  font-size: 1.4rem;
  color: #eee;
  padding: 1rem 0;
}

.education .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background: var(--yellow);
}

.project .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.project .box-container .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45rem;
  height: 45rem;
  border-radius: 1rem;
  margin: 2rem;
  /* overflow: hidden; */
  cursor: pointer;
  font-size: 1.4rem;
  color: #fff;
  padding-bottom: 50px;
  

}

.project .box-container .box .but {
  display: flex;
  justify-content: space-between;
}

.project .box-container .box span {
  font-size: 1.7rem;
  color: var(--yellow);
}

.project .box-container .box img {
  width: 100%;

}

.project .box-container .box:hover img {
  transform: scale(1.1);
}

.skill .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.skill .box-container .main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.skill .box-container .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 15rem;
  height: 16rem;
  border-radius: 1rem;
  text-align: center;
  margin: 2rem;
  overflow: hidden;
  font-size: 1.4rem;
  color: #fff;
  background: #666;
  padding: 2rem 2rem 1rem 2rem;


}

.skill .box-container .box img {
  width: 65%;
}

.contact .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact .row .content {
  flex: 1 1 30rem;
  padding: 4rem 0;
  padding-bottom: 0;
}

.contact .row form {
  flex: 1 1 45rem;
  padding: 2rem;
  margin: 2rem;
  margin-bottom: 4rem;
}

.contact .row form .box {
  padding: 1.5rem;
  margin: 1rem 0;
  background-color: #333;
  color: #fff;
  transform: none;
  font-size: 1.7rem;
  width: 100%;
}

.contact .row form .box::placeholder {
  text-transform: capitalize;
}

.contact .row form .message {
  height: 15rem;
  resize: none;
}

.contact .row .content .title {
  text-transform: uppercase;
  color: #fff;
  font-size: 3rem;
  padding-bottom: 2rem;
}

.contact .row .content .info h3 {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #eee;
  padding: 1rem 0;
  font-weight: normal;
}

.contact .row .content .info h3 i {
  padding-right: 1rem;
  color: var(--yellow);
}


.top {
  position: fixed;
  bottom: 4.5rem;
  right: 2rem;
  z-index: 100;
  display: none;
}

.top img {
  width: 5rem;
}






/* --------------------------------------------------------- */
.proj-cont {
  width: 100%;
  gap: 30px;
  color: #fff;
}

.proj-cont .box {
  display: flex;
  width: 90%;
  padding: 25px;
  background: #111;
  margin: auto;
  gap: 50px;
  margin-top: 25px;
  border-radius: 7px;
  border: 1px solid rgb(108, 117, 125);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

/* .proj-cont .box:hover .img img{
  transform: scale(1.1);
  transition: 0.3s;
} */
.proj-cont .box .img {
  width: 40%;
  display: grid;
  gap: 20px;
  overflow: hidden;
  border-radius: 0 20px 0 0;
}

.proj-cont .box:hover .img img {
  transform: scale(1.1);
  transition: 0.3s;
}

/* .proj-cont .box:hover{
  border: 2px solid #06d6a0;
} */
.proj-cont .box .img img {
  width: 100%;
  border-radius: 0 20px;
}

.proj-cont .box .img div {
  display: flex;
  justify-content: space-between;
}

.proj-cont .box .desc {
  width: 50%;
}

.proj-cont .box .desc h3 {
  font-size: 25px;
}

.proj-cont .box .desc p {
  font-size: 16px;
}

.proj-cont .box .desc .tec {
  margin: auto;
  /* border: 3px solid white;
  margin-top: 50px; */
}

.proj-cont .box .desc .tec h4 {
  font-size: 20px;
}

.a_btn {
  display: block;
  background-color: #ce93d8;
  border-radius: 5px;
  border: none;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
}

.a_btn:hover {
  background-color: #ce93d8;
  transition: 0.3s;
}


:root {
  --color-calendar-graph-day-bg: #464646;
  --color-calendar-graph-day-L1-bg: #39dd34;
  --color-calendar-graph-day-L2-bg: #45a045;
  --color-calendar-graph-day-L3-bg: #047526;
  --color-calendar-graph-day-L4-bg: #0a4208;
}

rect.ContributionCalendar-day[data-level='0'] {
  fill: var(--color-calendar-graph-day-bg);
}

rect.ContributionCalendar-day[data-level='1'] {
  fill: var(--color-calendar-graph-day-L1-bg);
}

rect.ContributionCalendar-day[data-level='2'] {
  fill: var(--color-calendar-graph-day-L2-bg);
}

rect.ContributionCalendar-day[data-level='3'] {
  fill: var(--color-calendar-graph-day-L3-bg);
}

rect.ContributionCalendar-day[data-level='4'] {
  fill: var(--color-calendar-graph-day-L4-bg);
}

/* rect{
    height: 12px;
    width: 12px;
} */
.calendar .width-full>.float-left {
  display: none;
}

.calendar {
  font-family: Helvetica, arial;
  border: 0px solid #DDDDDD;
  border-radius: 3px;
  min-height: 243px;
  text-align: center;
  margin: 0 auto;
  color: white;

}

.calendar-graph text.wday,
.calendar-graph text.month {
  font-size: 10px;
  fill: rgb(255, 255, 255);
}

.contrib-legend {
  text-align: right;
  padding: 0 14px 10px 0;
  display: inline-block;
  /* float: right; */
}

.contrib-legend .legend {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
  position: relative;
  bottom: -1px;
  padding: 0;
}

.contrib-legend .legend li {
  display: inline-block;
  width: 10px;
  height: 10px;
}

.text-small {
  font-size: 12px;
  color: #f5f5f5;
}

.calendar-graph {
  padding: 5px 0 0;
  text-align: center;
}

.contrib-column {
  padding: 15px 0;
  text-align: center;
  border-left: 1px solid #453f0e;
  border-top: 1px solid #453f0e;
  font-size: 11px;
}

.contrib-column-first {
  border-left: 0;
}

.table-column {
  display: table-cell;
  width: 1%;
  padding-right: 10px;
  padding-left: 10px;
  vertical-align: top;
}

.contrib-number {
  font-weight: 300;
  line-height: 1.3em;
  font-size: 24px;
  display: block;
  color: #ce93d8;
}

.calendar img.spinner {
  width: 70px;
  margin-top: 50px;
  min-height: 70px;
}

.monospace {
  text-align: center;
  color: #000;
  font-family: monospace;
}

.monospace a {
  color: #ce93d8;
  text-decoration: none;
}

.contrib-footer {
  font-size: 11px;
  padding: 0 10px 12px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  height: 26px;
}

.left.text-muted {
  float: left;
  margin-left: 9px;
  color: #767676;
}

.left.text-muted a {
  color: #ce93d8;
  text-decoration: none;
}

.left.text-muted a:hover,
.monospace a:hover {
  text-decoration: underline;
}

h2.f4.text-normal.mb-3 {
  display: none;
}

.float-left.text-gray {
  float: left;
}

#user-activity-overview {
  display: none;
}

.day-tooltip {
  white-space: nowrap;
  position: absolute;
  z-index: 99999;
  padding: 10px;
  font-size: 12px;
  color: #959da5;
  text-align: center;
  background: rgba(0, 0, 0, .85);
  border-radius: 3px;
  display: none;
  pointer-events: none;
}

.day-tooltip strong {
  color: #dfe2e5;
}

.day-tooltip.is-visible {
  display: block;
}

.day-tooltip:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 5px;
  height: 5px;
  box-sizing: border-box;
  margin: 0 0 0 -5px;
  content: " ";
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, .85)
}

text.ContributionCalendar-label {
  fill: #ffbd39;
  font-size: 11px;
}

.conct a {
  font-size: 25px;
  color: var(--yellow);
}

.conct a i {
  color: #fff;
  width: 5rem;
  height: 5rem;

}






@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

  .home {
    padding: 1rem 4rem;
  }
}

@media (max-width: 991px) {
  header {
    left: -120%;
  }

  #menu {
    display: block;
  }

  header.toggle {
    left: 0%;
  }

  body {
    padding: 0;
  }
}

@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 400px) {
  header {
    width: 100vw;
  }

  .heading {
    margin: 0 3rem;
  }

  .about .row .counter .box {
    width: 100%;
  }

  .education .box-container .box {
    width: 100%;
  }

  .project .box-container .box {
    width: 100%;
  }

  .contact .row form {
    margin: 3rem 0;
  }

  .skill .box-container .box {
    width: 30%;
    height: 13rem;
  }

  .conct a {
    font-size: 14px;
  }


}

.github-cont {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.git-cont {
  display: flex;
  width: 40%;
  margin: auto;
  justify-content: space-between;
}

.git-cont img {
  width: 40%;
}

.stats-cont {
  display: flex;
  width: 95%;
  margin: auto;
  justify-content: space-around;
  gap: 20px;
}

.stats-cont img {
  width: 40%;
}

.cal-cont {
  width: 100%;
  margin: auto;
  margin-right: 50rem;
  margin-top: 5rem;
  margin-left: 5rem;
}