body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* color:white */
    overflow-x:hidden
}





.boidsdiv {
    position: absolute; /* Keeps the background fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    z-index: -1; /* Send it behind other content */
    background: rgb(108,0,122);
    background: linear-gradient(0deg, rgba(108,0,122,1) 0%, rgba(0,19,24,1) 100%); 
}

.Hero h1,h4{
    color: white;
}
.Hero hr{
    color: white;
    width: 100%;
    transform-origin: center;
}
.Hero{
    padding-top: 20%;
}




.socials svg{
    width: 5%;  
}

.Hero svg{
    margin-top: 30;
    width: 25%
}


main {
    position: relative; /* Ensure main content is above background */
    z-index: 1; /* Ensure this is above the boidsdiv */
}

section {
    min-height: 100vh;
}

.aboutSection{
    /* background-color: ; */
}

.pfp{
    height: auto;
    width: clamp(20rem,30%,30rem);
    border-radius: 100%;
    border-color: black;
}


.icon{
    height: auto;
    /* width: 40%; */
    width: clamp(20%,30%,50%);
    /* color: ; */
}
.arrowDown{
    z-index: 3000;
}



.projects{
    background: rgb(108,0,122);
    background: linear-gradient(180deg, rgba(108,0,122,1) 0%, rgba(0,19,24,1) 100%); 
}

strong {
    color:rgb(108,0,122)
}

.projects h1,h4,hr{
    color: white;
}

a {
    color:#6a0dad;
}

.projects {
    background: rgb(108,0,122);
    background: linear-gradient(180deg, rgba(108,0,122,1) 0%, rgba(0,19,24,1) 100%);
    color: white;
    padding: 50px 0; /* Add some padding */
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.btn-primary {
    background-color: #6a0dad; /* Purple color */
    border-color: #6a0dad; /* Match border with background */
}

.btn-primary:hover {
    background-color: #5a0cad; /* Darker purple on hover */
    border-color: #5a0cad; /* Match border with hover background */
}
