body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    cursor: none;
    overflow-x: hidden;

}
a{
    cursor: none;
}
.cursor-wrapper {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-main {
    width: 16px;
    height: 16px;
    background: #070606;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
header {
    background: #444;
    color: #fff;
    height: 98vh;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}
.background {
    position: absolute;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

header > div {
    position: relative;
    z-index: 1;
}

.titleText{
    font-weight: 400;
}

main {
    background: #f6f6f6;
    padding: 8vw;
    margin-bottom: 10vh;
}

section {
    margin-bottom: 40px;
}

h2, h3 {
    color: #444;
}
h4{
    font-weight: 300;
}

.project {
    background: #fff;
    display: flex;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project h3 {
    margin-top: 0;
}

.project a {
    color: #0066cc;
    text-decoration: none;
}
.project>div>div> img{
    margin: 50px;
    width: 350px;
}
.project-title{
    display: flex;
    justify-content: center;
}
.project-details{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
footer {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.animated-icon {
    display: inline-block;
    color: #0086c0;
    animation: moveUpDown 1.5s ease-in-out infinite alternate;
    padding-top: 5vh;
}
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}
.profile-image{
    width: 40vh;
}


.wrapper {
    display: inline-flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .stackoverflow:hover,
.wrapper .stackoverflow:hover .tooltip,
.wrapper .stackoverflow:hover .tooltip::before {
    background: #E7700D;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}
.wrapper .phone:hover,
.wrapper .phone:hover .tooltip,
.wrapper .phone:hover .tooltip::before {
    background: #4ba456;
    color: #ffffff;
}
.wrapper .icon span {
    color: #333; /* Set default icon color to dark gray */
}

.wrapper .github:hover span,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

@media (max-width: 600px) {
    .project div>div> img {
        width: 100%; /* Make the image full width on smaller screens */
        height: auto; /* Maintain the aspect ratio */
        margin: 0;
    }
}

