html {
  overflow-x: hidden;
}
body {
  background-color: #080808;
  font-family: "Poppins";
}

.navbar {
  background: rgb(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nama {
  color: #00ffee;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
  text-shadow: 0 0 25px;
}
.nama:hover {
  transform: scale(1.1);
  color: #00ffee;
}

.nama span {
  color: white;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
  font-weight: 500;
}

.navbar ul li a:hover,
.navbar ul li a:active,
.navbar ul li a:focus {
  color: #00ffee;
  border-bottom: 3px solid #00ffee;
}

.home {
  color: white;
}

.home a i {
  color: #00ffee;
  border: solid;
  border-radius: 50%;
  padding: 10px;
}
.home a i:hover {
  color: white;
  background: #00ffee;
  transform: scale(1.3);
  transition: 0.2s ease;
  border-color: transparent;
}

.home h3 {
  font-size: 2em;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #00ffee; /* Simulates the cursor */
  width: 20ch; /* Adjust width to match text length */
  animation: typing 4s steps(18) infinite, blink 0.5s step-end infinite;
}

h3 span {
  color: #00ffee;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 18ch; /* Adjust width to match text length */
  }
}

@keyframes blink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #00ffee;
  }
}

.home p {
  font-family: "Montserrat";
}
.home img {
  box-shadow: 0 0 25px #00ffee;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.home img:hover {
  box-shadow: 0 0 25px #00ffee, 0 0 50px #00ffee, 0 0 100px #00ffee;
}

#about .card:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

#about p {
  font-family: "Montserrat";
  font-weight: bold;
}
#project img:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
#sertificate img:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.custom-input {
  color: white;
  background-color: #080808;
  border-radius: 1rem;
  border: 3px solid #00ffee;
  font-size: 15px;
}

.custom-textarea {
  color: white;
  background-color: #080808;
  border-radius: 1rem;
  border: 2px solid #00ffee;

  resize: none;
}

.custom-btn {
  padding: 1rem 2rem;

  color: #00ffee;
  background-color: #080808;
  border-radius: 2rem;
  border: 3px solid;
  border-color: #00ffee;

  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  color: white;
  background-color: #00ffee;
  border-color: #00ffee;
}

.footer .sosmed a i {
  color: #00ffee;
  border: solid;
  border-radius: 50%;
  padding: 10px;
}

.footer .sosmed a i:hover {
  color: white;
  background: #00ffee;
  transform: scale(1.3);
  transition: 0.2s ease;
  border-color: transparent;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
  font-weight: 500;
}

.footer ul li a:hover,
.footer ul li a:active,
.footer ul li a:focus {
  color: #00ffee;
  border-bottom: 3px solid #00ffee;
}

.footer {
  background-color: #080808;
  padding: 2rem 0;
}

.footer ul {
  list-style-type: none;
}
