@font-face {
  font-family: "Baloo_Bhai";
  src: url("../assets/Baloo_Bhai.ttf") format("truetype");
}
* {
  cursor: none;
}
body {
  background-color: black;
  font-family: Baloo_Bhai;
  color: #fff;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  margin-top: 0px;
}
.menu {
  text-decoration: none;
  padding: 20px;
  color: #fff;
  font-size: xx-large;
}
.menu:active,
.menu:focus {
  background: linear-gradient(90deg, #00d2ff, #3a47d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.profilepic {
  display: flex;
  justify-content: center;
}
.circular-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);

}
.circular-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: translateZ(0);
}

ul {
  display: flex;
  flex-grow: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-evenly;
}

ul li {
  color: #000000;
  display: grid;
  place-content: center;
  margin: 0;
  padding: 5px;
}

ul li:first-child {
  margin-right: auto;
  font-weight: bold;
}
.greeting {
  color: #fff;
}
.name,
.hello {
  color: rgb(252, 180, 86);
}
.name {
  z-index: -1;
  cursor: none;
  border-radius: 5px;
  font-size: 40px;
  box-shadow: 0 5px 30px 0 rgba(22, 32, 220, 0.37);
}

.social-links {
  margin-top: 20px;
}

.btn {
  width: 150px;
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
}

.instagram {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.linkedin {
  background: linear-gradient(45deg, #0e76a8, #0077b5, #00a0dc);
}

.twitter {
  background: linear-gradient(45deg, #000000, #4b4b4b, #1da1f2);
}
.github {
  background: linear-gradient(45deg, #333333, #666666, #999999);
}

.btn:hover {
  opacity: 0.8;
}
.intro {
  font-size: 18px;
  margin: 10px 0;
}
.btn-gradient {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px 0;
  font-size: 16px;
  color: white;
  background: linear-gradient(45deg, #ff6b6b, #f06595, #f3a683);
  border-radius: 30px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #ff6b6b, #ff8787, #ffc4a3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}

.hidden {
  display: none;
}
body::-webkit-scrollbar {
  display: none;
}

#custom-cursor {
  position: absolute;
  width: 40px;
  height: 40px;
  border: white solid;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  display: flex;
  transform: translate(-0%, -0%);
  justify-content: center;
  align-items: center;
}
#animation-container {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.1s ease-out;
}

#animation-img {
  width: 100%;
  height: auto;
  animation: crunched-paper 1s infinite;
}
@keyframes crunched-paper {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}
#follow-element {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 9999;
}
a {
  cursor: none;
}
#tracker {
  position: absolute;
  width: 50px;
  height: 50px;

  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.2s ease-out;
}
.ahome {
  font-size: xx-large;
  display: none;
}
#contactbtn2 {
  display: none;
}
@media (max-width: 576px) {
  * {
    cursor: default;
  }
  body {
    font-size: 12px;
  }
  #contactbtn {
    display: none;
  }
  #contactbtn2 {
    font-size: x-large;
    display: inline;
    /* border: whitesmoke solid 2px; */
    border-radius: 30px;
    padding: 7px;
  }
  #custom-cursor {
    display: none;
  }
  #tracker {
    display: none;
  }
  ul li:first-child {
    display: none;
  }
  h1 {
    font-size: 1em;
  }
  .btn {
    font-size: 0px;
    width: 80px;
  }
  .btn i {
    font-size: 24px;
  }
  .menu {
    font-size: large;
  }
  p {
    font-size: 0.8em;
  }
  #ahome {
    display: inline;
    text-decoration: none;
  }
  .pdfsave {
    display: block;
  }
  .about-design-div {
    display: none;
  }
}
