@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    padding: 1rem;
    align-items: center;
    

    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);

}

.card-container {
    background-color: rgb(31, 31, 32);
    color: rgb(255, 255, 255);
    padding: 2rem;
    width: 20rem;
    margin: .5rem;
    border-radius: .4rem;
}

.cart-top-navigation {
    display: flex;
    justify-content: space-between;
}

.cart-top-navigation li,
.cart-top-navigation ul {
    list-style: none;
    color: yellow;
    font-size: 1.2rem;
}

.cart-top-navigation ul i {
    margin-left: 10px;
}

.user-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.user-image img {
    border-radius: 50%;
   
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.user-name,
.about-user {
    text-align: center;
    margin-top: 1.5rem;
}

.user-name {
    font-size: 1.6rem;
    color: yellow;
}

.hire-me {
    
    margin: 1.3rem auto;
    background-color: rgb(253, 253, 253);

    display: block;
    border: none;
    padding: .8rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.hire-me:hover {
    background-color: yellow;
    
}

.social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1rem;
}
/* .social-item span{
    color: yellow;
    margin-top: .5rem;
    cursor: pointer;
    
} */

.social-item a{
    text-decoration: none;
    color: yellow;
    margin-top: .5rem;
    cursor: pointer;
    
}
.social-item li {
    list-style: none;
    padding: 0.8rem;
    border-radius: 15%;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.github {
    color: black;
    background-color: rgb(253, 253, 253);
}

.linkdin-in {
    background-color:rgb(0, 38, 255);
    color: #ffffff;
}

.social-item i {
    font-size: 1.5rem;
}

