#blick {
  color: green;
  font-size: 12px;
  animation: blink 2s infinite;
}

.job-arrow{
  color: rgb(237, 237, 237) !important;
  font-size: 12px !important;
  animation: blink 3s infinite  !important;
}


* {
  caret-color: transparent;
}
body::-webkit-scrollbar {
  display: none;
}

.loader-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  opacity: 1;
  transition: opacity 1s ease, transform 1s ease;
}

.loader-div.hide {
  transform: scale(1.3);
  opacity: 0;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.blinking-cursor {
  font-weight: 400;
  font-size: 1.2em;
  color: rgb(249, 249, 249);
  animation: blink-cursor 1s step-start infinite;
}

@keyframes blink-cursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.get-me {
  text-shadow: 0 0 21px rgb(255, 255, 255), 0 0 100px rgb(255, 255, 255),
    0 0 0px rgb(255, 255, 255);
}

.tech-icon {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border-radius: 5px;
  border: 1px solid #353535;
  font-size: 11px;
}

@media screen and (max-width: 602px) {
  .main-section {
    padding: 2px !important;
    margin-top: -20px;
  }
  .name-heading {
    font-size: 30px !important;
    margin-bottom: -8px;
  }

  #sub-heading {
    font-size: 15px;
  }
}
@media screen and (max-width: 386px) {
  .main-section {
    padding: 2px !important;
  }

  #profile {
    margin-top: 17px;
  }
  .name-heading {
    font-size: 7vw !important;
    margin-bottom: -8px;
  }

  #sub-heading {
    font-size: 11px;
  }

  #about {
    font-size: 14px;
  }
  #work-time{
    margin-top: 10px;
  }

  #work-name h3{
    font-size: 16px;
  }
  #work-name p{
    font-size: 12px;
  }
  #hack-time {
    font-size: 11px;
  }
  #hack-del{
    font-size: 12px;
  }
  
 
}


.skill-col {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.skill-col p {
  color: #d3cfcf;
  border-radius:3px;
  font-size: 11px;
  padding: 1px 10px 1px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border: 1px solid #232323;

}