.intro{
  display: flex;
  justify-content: space-between;
  align-items: stretch;  
  flex-wrap: wrap;
  /* gap:40px; */
  margin-top: 50px;
}


.title{
    font-size: 42px;
    font-weight: normal;
    padding:0px;
    margin: 0px;
}
h1 > span{
  font-weight: bold;
  font-size: 72px;
}
.intro-part{
    display: block;
    min-height: 100%;
}

#left-intro{
    max-width: 50vw;
}
#right-intro{
    /* box-shadow: inset 0px -100px 10px 400px #000; */
    overflow-x: hidden;
}
#avatar-div{
    position: relative;
    z-index: 999999;
    width: 500px;
    height: 600px;
}
#hm-avatar{
    position: relative;
    top:30px;
    left:60px;
    border-radius: 2%;
    width: 400px;
    height: 550px;

}

#circle-div{
    position: absolute;
    /* background-color: #5FE6A0; */
    background-image: linear-gradient(to bottom, #5FE6A0, #46aa76 , #286445);
    z-index: 9;
    padding:10px;
    width:500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;

}
#inner-circle-div{
    background-color: #252629;
    width:370px;
    height: 370px;
    border-radius: 50%;
}

/* ---- Bubbles ---- */

.bubble {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #3b3b3b;
    color: #5FE6A0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

/* Positioning around circle */
.bubble-ai {
    top: 55%;
    left: -35px; 
    transform: translateY(-50%);
}

.bubble-py {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.bubble-ps {
    top: 55%;
    right: -35px;
    transform: translateY(-50%);
}
.bubble-ds {
    top: 7%;
    left:80%;
    /* transform: translateX(-80%);  */
}

.bubble-js {
    top: 7%;
    left: 5%;
    /* transform: translateX(-80%);  */
}



.spaced-h{
    color:#46aa76;
    letter-spacing: 3px;
}




.stack-overview-section{
   display: flex;
   justify-content: center;
   align-items: flex-start;
   flex-direction: column;
   margin:50px auto;
   padding:20px;
   box-sizing: border-box;
   box-shadow: 0 0 50px 2px #1f1f1f;
}
.center-content-div{
    position: relative;
    width:50vw;
    margin:10px auto;
    text-align: center;
}
.flex-items{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap:wrap;
    gap:40px;
}

.major-stack-div{
    width:200px;
    height: 200px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #252629;
    gap:20px;
    transition: 0.7s;
}
.major-stack-div:hover{
    box-shadow: 0 0 50px 1px #4a4a49;
    /* transform: scale(0.98); */
    border-radius: 9px;
}
/* .major-stack-div span{color:#fff}
.major-stack-div:hover img, .major-stack-div:hover span {
    filter: brightness(0) saturate(100%) invert(78%) sepia(55%) 
            saturate(3024%) hue-rotate(1deg) brightness(103%) contrast(102%);
} */












.second-part{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    padding-top:80px
}


.flex-divs{
    display:flex;
    flex-flow: wrap;
    width:45%;
    gap:30px;
}

#flex-div-2{
    gap:0px;
    align-items: flex-start;
    padding:20px;
}

.major-stack-icon{
    width:32px;
    height: 32px;
}
.light-ul{
    /* padding:0px; */
    line-height: 2;
    color:#b8b5b5
}

.flex-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:20px;
}
.flex-column:first-child{
    position: relative;
    top:-20px;
}

.flex-column>div{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background-color: #252629;
    /* border: solid 2px red; */
    box-shadow: 0 0 12px 2px #333434;
    padding:20px 20px;
    width:220px;
    height: 220px;
    border-radius: 30px;
}

.flex-divs h3{
    margin:5px;
}

.flex-divs p{
    font-size: 14px;
}



.circle-div{
   display: flex;
   justify-content: center;
   align-items: center;
   width:80px;
   height: 80px;
   border: solid 2px #5FE6A0;
   border-radius: 50%;
}





#section-projects{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:50px;
    padding:50px 20px;
    box-sizing: border-box;
    /* box-shadow: 0 0 50px 2px #1f1f1f; */
    border-radius: 30px;
}















@media (max-width: 768px) {


.intro-part{
    display: block;
    height: auto;
    padding:15px;
    box-sizing: border-box;
}
.intro-part p, .light-ul{
    text-align: justify;
}

#left-intro{
    order: 2;
    max-width: 100vw;
}

#avatar-div{
    position: relative;
    z-index: 999999;
    width: 100vw;
    height: auto;
    margin-bottom:90px;
}
#hm-avatar{
    position: relative;
    top:60px;
    left:16vw;
    border-radius: 2%;
    width: 62vw;
    height: auto;

}

#circle-div{
    position: absolute;
    /* background-color: #5FE6A0; */
    background-image: linear-gradient(to bottom, #5FE6A0, #46aa76 , #286445);
    z-index: 9;
    padding:10px;
    width: 70vw;
    height: 70vw;
    left: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;

}
#inner-circle-div{
    background-color: #252629;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
}


h1 > span{
  font-weight: bold;
  font-size: 52px;
}


.title{
    font-size: 32px;
}






.second-part{
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    padding-top:80px
}

.second-part br{
    display: none;
}
.flex-divs{
    display:flex;
    flex-flow: wrap;
    width:100%;
    gap:30px;
}

.flex-column{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:20px;
}

.flex-column>div{
    padding:10px;
    width:300px;
    height: 300px;
    border-radius: 30px;
}
.circle-div{
   margin-bottom: 10px;
}

.flex-divs p{
    font-size: 16px;
}

.flex-column:first-child{
    position: relative;
    top:0px;
}


#flex-div-2{
    gap:0px;
    align-items: flex-start;
    padding:10px;
    margin-top:40px;
}
#flex-div-2 button{
    position:relative;
    margin:10px auto;
}

.light-ul{
    margin:40px auto;
    line-height: 1;
    color:#b8b5b5
}
.light-ul li{
    margin-bottom:12px;
}








.stack-overview-section{
   display: flex;
   justify-content: center;
   align-items: flex-start;
   flex-direction: column;
   margin:50px auto;
   padding:20px 0px;
   box-sizing: border-box;
   box-shadow: 0 0 50px 2px #1f1f1f;
}

.center-content-div{
    position: relative;
    width:100%;
    margin:10px auto;
    text-align: center;
    padding:10px;
    box-sizing: border-box;
}
.center-content-div p{
    text-align: justify;
}

.major-stack-div{
    width:150px;
    height: 150px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #252629;
    gap:2px;
    transition: 0.7s;
}






#section-projects{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:20px;
    padding:40px 5px;
    box-sizing: border-box;
    /* box-shadow: 0 0 50px 2px #1f1f1f; */
    border-radius: 30px;
}


}