body{
  background: var(--secondaryCol);
}

main{
  width: 100vw;
  height: 100vh;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Card */
#card{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px;
  height: 80vh;
  overflow: hidden;
  width: 80vw;
  max-width: 350px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.45);
}
#avatorCont{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: fit-content;
  position: relative;
  animation: avator_top 1.7s ease 0s;
  z-index: 1;
}
@keyframes avator_top{
  0%{
    top: -100%;
    z-index: 0;
  }
  100%{
    top: 0;
    z-index: 1;
  }
}
.avator{
  position: absolute;
  display: block;
  width: 70px;
  border-radius: 50%;
}
#avatorCircle{
  width: 80px;
  height: 80px;
  background: linear-gradient(var(--tertiaryCol), var(--secondaryCol));
  animation: circleRotate 5s linear infinite;
  border-radius: 50%;
  border: 0;
}
@keyframes circleRotate{
  100%{
    transform: rotate(360deg);
  }
}
h1{
  font-size: 1rem;
  text-align: center;
}
h1 mark{
  background: transparent;
  color: skyblue;
}
#skills{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.skill span {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0px;
  background: var(--primaryCol);
  border-radius: 50px;
  transition: width 2s ease-in-out;
}
#badge{
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: badge_down 2s ease 0s;
}
@keyframes badge_down{
 0%{
   top: 100%;
   z-index: 0;
 } 
 100%{
   top: 0;
   z-index: 1;
 }
}