*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
#minicircle{
    transition: all cubic-bezier(0.19, 1, 0.22,1) .4s;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 999999;
    border-radius: 50%;
    background-color: white;
}
/* .bounding{
    width: fit-content;
    overflow: hidden;
}
.bounding .boundingelem{
    transform: translateY(100%);
} */
#main{
    width: 100%;
    height: 100vh;
    
}
#hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: black;
    color: white;
}
#nav{
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#nav a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
#heading{
    margin-top: 90px;
}
#heading h1{
    margin-left: 30px;
    font-size: 9vw;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    opacity: .6;
    line-height: 1;
}
#heading #secondh1{
    margin-left: 140px;
}
.blocktext{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: fit-content;
}
.blocktext h5{

    text-align: right;
    font-size: 12px;
    text-transform: uppercase;
    opacity: .9;
}
#smallheading{
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 50px;
    padding-right: 50px;
}
#smallheading h5{
    text-transform: uppercase;
    margin-top: 1vw;
    font-size: 1vw;
    text-align: right;
}
#footer{
    width: 100%;
    position: absolute;
    bottom: 3%;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#footer a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
}
#iconset{
    display: flex;
    gap: 10px;
}
#footer .circle{
    display: flex;
    align-items: center;
    justify-self: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #888;
}
#second{
    color: white;
    padding-right: 10vw;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    padding-top: 100px;
}
.elem{
    display: flex;
    position: relative;
    width: 100%;
    border-TOP: 1px solid #888;
}
.elem h1{
    margin-top: 5vw;
    margin-bottom: 5vw;
    text-transform: uppercase;
    opacity: .7;
    margin-left: 40px;
    font-size: 4vw;
}
.elementb{
    border-bottom: 1px solid #888;
}
.elem img{
    position: absolute;
    z-index: 999;
    height: 200px;
    width: 200px;
    opacity: 0;
    pointer-events: none;
}
#about{
    width: 100%;
    background: black;
    height: 100vh;
    padding: 10vw 10vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-left: 25vw;
}
#about img{
    height: 330px;
    width: 300px;
    border-radius: 50%;
}
#textabout{
    width: 30rem;
}
#textabout h5{
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 30px;
    font-size: 16px;
}
#textabout p{
    opacity: .9;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
#textabout p:hover{
    opacity: 1;
}
#textabout a{
    padding: 12px 22px;
    border: 1px solid #fff;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}
#textabout a:hover{
    background-color: white;
    color: black;
}
#subscribe{
    color: white;
    background-color: black;
    padding-bottom: 30px;
}

#subscribe h5{
    font-size: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-left: 45px;
    opacity: .9;
}

#subscribe a{
    color: white;
    text-decoration: none;
    margin-left: 35px;
    font-size: 18px;
}

#subscribe a svg{
    height: 12px;;
}
#lastfooter{
    display: flex;
    text-align: center;
    justify-content: space-between;
    background-color: black;
    color: white;
    padding: 30px 40px 30px;
}
#lastfooter #leftfooter{
    display: flex;
    gap: 100px;
}
#rightfooter{
    display: flex;
    gap: 50px;
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 40px;
}
#lastfooter #rightfooter a{
    text-decoration: none;
    color: white;
}

.card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #000000;
  color: white;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1000;
}

.card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.skill {
  margin: 10px 0;
}

.skill span {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  margin-top: 5px;
}

.bar {
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.fill {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 3px;
  text-align: right;
  border-radius: 8px;
  font-size: 12px;
}
