
@import url('https://fonts.googleapis.com/css2?family=Bungee+Tint&family=Nerko+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nerko One", cursive;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
    background: linear-gradient(rgba(63, 12, 135, 0.8), rgba(31, 34, 80, 0.2)) 
}

.container {
    text-align: center;
    padding: 0 20px;
}

.header {
    margin-bottom: 30px;
}

h1 {
    font-size: 5rem;
    color: black;
    margin-bottom: 20px;
   
}

.avatar {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
   
}

.avatar:hover {
    transform:   rotateY(180deg);
    box-shadow: 0 8px 15px rgba(36, 13, 13, 0.3);
    background-color: rgb(72, 40, 119);
}

.social-icons {
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap; 
}

.social-icons .icon {
    margin: 15px;
    display: flex;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-icons span {
    height: 80px;
    width: 80px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-icons span i {
    line-height: 80px;
    font-size: 30px;
}

/* Hover Effects */
.linkedin:hover { color: #0077b5; background-color: white;border-radius: 50%; }
.instagram:hover { color: #e4405f; background-color: white;border-radius: 50%; }
.github:hover { color: #0a0a0a; background-color: white; border-radius: 50%;}
.discord:hover { color: #7289da; background-color: white;border-radius: 50%; }
.slack:hover { color: #4a154b; background-color: white;border-radius: 50%; }
.facebook:hover { color: #1877f2; background-color: white;border-radius: 50%; }
.dev:hover { color: #0a0a0a; background-color: white;border-radius: 50%; }
.medium:hover { color: #010101; background-color: white;border-radius: 50%; }
.youtube:hover { color: #ff0000; background-color: white;border-radius: 50%; }
.threads:hover { color: #000000; background-color: white;border-radius: 50%; }
.x:hover { color: #020303; background-color: white; border-radius: 50%;}
.website:hover { color: #5286ee; background-color: white;border-radius: 50%; }
.email:hover { color: #4a1568; background-color: white;border-radius: 50%; }
.quora:hover { color: #b92b27; background-color: white;border-radius: 50%; }
.reddit:hover { color: #ff4500; background-color: white;border-radius: 50%; }
.docker:hover { color: #1877f2; background-color: white;border-radius: 50%; }
.mastadon:hover { color: #6364FF; background-color: white;border-radius: 50%; }

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 4rem; /* Smaller font size for tablets */
    }

    .avatar {
        width: 160px; /* Smaller avatar for tablets */
    }

    .social-icons span {
        height: 60px;
        width: 60px; /* Smaller icons for tablets */
    }

    .social-icons span i {
        line-height: 60px;
        font-size: 24px; /* Adjust icon size */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 4rem; /* Even smaller font size for mobile devices */
    }

    .avatar {
        width: 150px; /* Smaller avatar for mobile devices */
    }

    .social-icons span {
        height: 50px;
        width: 50px; /* Smaller icons for mobile */
    }

    .social-icons span i {
        line-height: 50px;
        font-size: 20px; /* Adjust icon size for mobile */
    }

    .social-icons .icon {
        margin: 10px; /* Reduce margin between icons on mobile */
    
    }
}
