@font-face {
  font-family: calibri;
  src: url("fonts/calibri-font-family/calibri-font-family/calibri-regular.ttf");
}
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Notch:wght@200..700&display=swap');
body {
  font-family: calibri;

  line-height: 1.56;
  font-weight: 400;
}
nav{
    font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
#home {
  background-image: url("image/banner_bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
}

#skills{
  background-image: url("image/skills.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 900px;
  z-index: 100;
}

.Frameworks {
  min-height: 160px;
}
#about {
  background-image: url("image/banner_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  min-height: 100vh;
  font-family: "Stack Sans Notch", sans-serif;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.float-animation {
  animation: float 3s ease-in-out infinite;
}
html {
  scroll-behavior: smooth;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}
.typing-cursor {
  display: inline-block;
  width: 3px;
  background-color: #60a5fa;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .profile {
    padding: 40px;
    margin-top: 60px;
  }
}
