@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgb(80, 48, 238) 68%, rgba(255,25,25,1) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
}
#navbar {
  display: flex;
  justify-content: space-evenly;
  background: #422756;
  padding: 30px 0;
  align-items: center;
  margin-bottom: 50px;
  color: #fff;
  font-size: 20px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif

}

#navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
}

#navbar a:hover {
  color: #ccc;
}

#profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

#profile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#profile-text img:hover {
  transform: scale(1.15);
  cursor: pointer;
}

#profile h2 {
  font-size: 43px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

#about,
#chat,
#projects,
#exp {
  width: 60%;
  margin: 30px auto;
  background-color: #eee;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#chat {
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #dedede;
  border-radius: 5px;
  background-color: #fff;
  color: #422756;
}

input[type="text"]:focus {
  outline: none;
  border: 2px solid #383a39;
}

#title, label{
  color: white;
  margin-bottom: 15px;
}

#profile-text {
  color: white;
}

#projects h2,
#about h2,
#chat h2,
#exp h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
}

#about h3 {
  text-align: center;
  font-size: 25px;
}

.project,
.job {
  background: #dedede;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 75%;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#projects li,
.job li {
  margin-left: 25px;
}

button {
  padding: 0.4rem 0.8rem;
  border: 0.2rem solid #333;
  border-radius: 0.5rem;
  background-color: #333;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #dedede;
  color: #333;
}

.github {
  border-width: 0.15rem;
  padding: 0.3rem 0.6rem;
  font-size: 16px;
}

.project button {
  padding-left: 0.5rem;
}

.project button:hover {
  color: #333;
}

button:hover .github-inline {
  filter: invert(0);
}

.github-inline {
  margin-bottom: -3.5px;
  margin-right: 1px;
  filter: invert(1);
}

path {
  stroke: white;
  fill:paleturquoise !important;

  transition: fill .4s ease;
  transform-origin: center center;
}

path:hover {
  fill: orange !important;
  cursor: pointer;
  transform: scale(1.005, 1.005);
}

/* #map-container {
  display: flex;
  justify-content: center;
  align-items: center;
} */

#us-map {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  padding-top: 10%;
  padding-left: 10%;
}

#details-box {
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
  opacity: 0%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 24px;
  position: fixed;
  color: white;
  font-family: "Poppins";
  background-color: black;
  width: fit-content;
  transform: translateX(-50%);
  transition: opacity .4s ease;
  z-index: 1;
}
