body{
    overflow-x: hidden;
}

.bg{
    box-sizing: border-box;
    background: linear-gradient(0deg, rgb(103, 0, 0) 0%, rgb(20, 14, 14) 70%);
    height: auto;
    flex-direction: column;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}


.montserrat-400 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-800 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.profile-pic {
    position: relative; 
    width: 100%; 
    z-index: 1; 
}
.overlay-text-div{
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute; 
    top: 5%; 
    text-align: center;
    align-items: center; 
    z-index: 0; 
    margin: 0; 
}
.overlay-text {   
    margin: 0; 
    font-size: 100px;
    text-shadow: -1px -1px 0 #ffffff48,
               1px -1px 0 #ffffff48,  
               -1px 1px 0 #ffffff48,  
               1px 1px 0 #ffffff48;
    white-space: nowrap;
    color: rgb(20, 14, 14);
}

.overlay-text2 {   
    margin: 0; 
    font-size: 40px;
    text-shadow: -1px -1px 0 #ffffff48,
               1px -1px 0 #ffffff48,  
               -1px 1px 0 #ffffff48,  
               1px 1px 0 #ffffff48;
    white-space: nowrap;
    color: rgb(20, 14, 14);
}

.description{
    position: relative;
    top: -13vw;
    padding: 1vw 10vw 3vw 10vw;
    background-color: rgb(103, 0, 0);
    font-size: 14px;
    color: white;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.carousel{
    mask-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
    width: 95vw;
    display: flex;
    overflow-x: auto;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel2{
    mask-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
    width: 95vw;
    display: flex;
    overflow-x: auto;
}

.carousel2::-webkit-scrollbar {
    display: none;
}

.group1{
    display: flex;
    animation: moveText 19s linear infinite;
}
.group2{
    display: flex;
    animation: moveText2 24s linear infinite;
}
.group3{
    display: flex;
    animation: moveText 17s linear infinite;
}
.group4{
    display: flex;
    animation: moveText2 19s linear infinite;
}

.card{
    flex: 0 0 5em;
    padding-right: 3vw;
}

.card2{
    flex: 0 0 5em;
    padding-right: 1.5vw;
}

@keyframes moveText {
    from {translate: 0;}
    to {translate: -100%;}
}

@keyframes moveText2 {
    from {translate: -100%;}
    to {translate: 0;}
}



.about-me{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    top: -10vw;
}

.fa-brands{
    color: rgb(151, 113, 113);
    transition: all 0.3s ease-in-out;
}

.brand-label:hover .fa-brands{
    color: rgb(255, 255, 255);
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

.brand-label:hover .tech-stack-label{
    color: white;
    transition: all 0.3s ease-in-out;
}

.tech-stack-label{
    color: transparent;
    transition: all 0.3s ease-in-out;
    font-size: 24px;
}
/* 
.tech-stack-label:hover{
    color: white;
} */

.projects img{
    border-radius: 1vw;
}
