html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
}
form {
  display: flex;
  flex-direction: column;
  width: 300px;
}
input,
textarea,
button {
  margin-bottom: 10px;
  padding: 8px;
}
button {
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #45a049;
}

.name-logo {
  background-color: rgb(6 112 255 / 25%);
  width: 30px;
  height: 30px;
  align-self: center;
  font-weight: bold;
  font-size: 27px;
  border-radius: 5px;
  text-align: center;
  padding: 5px;
  animation: name-logo-trans 1s ease-in forwards;
}

.name-logo-link {
  text-decoration: none;
  color: rgb(255 255 255 / 71%);
}

@keyframes name-logo-trans {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.name-heading {
  color: rgb(219 244 225 / 73%);
  align-self: center;
  animation: name-heading-trans 1s ease-out forwards;
}

@keyframes name-heading-trans {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.name-container {
  display: flex;
  flex-direction: row;
  width: 110px;
  justify-content: space-between;
}
.navbar {
  background-color: #000000b7;
  padding: 0 20px;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 96%;
  z-index: 10;
  margin: 10px;
  border-radius: 20px;
}

.nav-item {
  color: rgb(73 241 131 / 76%);
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}
.nav-items {
  width: 220px;
  display: flex;
  justify-content: space-between;
}

.nav-item:hover {
  color: rgb(135, 130, 130);
}

.bg-container {
  background-image: linear-gradient(
    to left,
    rgba(246, 4, 4, 0.8),
    rgba(37, 37, 225, 0.8)
  );
  height: 100%;
}

.content-container {
  padding: 20px;
}
.hero-container {
  padding-top: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
}

.hero-heading {
  font-size: 60px;
  font-family: "Poppins";
  font-weight: 700;
  background: radial-gradient(circle, rgb(239, 99, 99), rgb(255, 0, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.hero-para {
  padding-left: 10px;
  color: rgb(214, 214, 214);
  font-size: 20px;
}

.tech-heading {
  font-family: "Poppins";
  font-size: 50px;
  font-weight: 700;
  background: radial-gradient(
    circle,
    rgba(0, 246, 45, 0.601),
    rgba(135, 131, 194, 0.581)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0;
}

.tech-stack-container {
  height: 40vh;
  width: 96%;
  background-color: rgba(0, 0, 0, 0.242);
  position: absolute;
  z-index: 1;
  left: 0;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-card {
  background-color: rgba(0, 185, 185, 0.473);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 115px;
  height: 85px;
  padding-top: 30px;
  margin: 0;
  border-radius: 10px;
}

.tech-card-content {
  font-family: "Poppins";
  font-weight: 700;
  color: rgb(0, 34, 128);
  margin-top: 24px;
}

.tech-cards {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.input-form-element {
  border-radius: 10px;
  background-color: rgba(0, 255, 179, 0.252);
  height: 20px;
  border: 1px solid rgb(55, 55, 55);
  margin: 10px 0;
}

.form-heading {
  font-family: "Poppins";
}

.footer-heading {
  color: aliceblue;
}

.footer {
  background-color: rgba(0, 0, 0, 0.242);
  margin-top: 500px;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
}

.send-button {
  border-radius: 10px;
  margin-top: 20px;
}

.bg-container-resume {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to left,
    rgba(246, 4, 4, 0.8),
    rgba(37, 37, 225, 0.8)
  );
  height: 100vh;
}

.bg-container-projects {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image: linear-gradient(
    to left,
    rgba(246, 4, 4, 0.8),
    rgba(37, 37, 225, 0.8)
  );
  height: 160vh;
  padding: 30px;
  box-sizing: border-box;
}

.resume-css {
  height: 100%;
  width: 60vw;
}

.projects-card-img {
  width: 100%;
  height: 180px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tech-projects {
  width: 300px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  border-radius: 20px;
  padding-bottom: 10px;
}

.proj-container {
  position: relative;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
}

.proj-tech {
  margin: 5px;
  background-color: rgb(0, 0, 0);
  color: rgba(255, 255, 255, 0.785);
  padding: 5px;
  border-radius: 10px;
  font-size: 10px;
}

.tech-used-projects {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card-content-projects {
  padding: 10px;
}

.proj-heading {
  margin: 10px 0;
}

.proj-link {
  margin: 10px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.701);
  background-color: rgba(0, 0, 153, 0.771);
  padding: 5px;
  border-radius: 10px;
}

.response-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: "Poppins";
  color: whitesmoke;
}
