@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap"); 
* {
    padding: 0px;
    margin: 0px;
    font-family: 'open sans', sans-serif;
}

::root {
    --primary-color: #31b6bf;
    --secondary-color:#27e7f1;
    --text-dark:#333333;
    --text-light:#767268; 
    --extra-light: #f3f4f6;
}

.main {
    width: 412px;
    height: 914px;

    margin: 10px auto;
    background-color: var(--extra-light);
    box-shadow: 10px 10px 50px #9ca3af;
}

.navbar {
    width: 100%;
    gap: 50px;
    display: flex;
    justify-content: space-around;

}

.logo {
    width: 50%;
}

.more {
    width: 30%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.logo img {
    width: 90%;
}

.more i {
    font-size: 35px;
}

i:hover {
    font-weight: 900;
    
}


.profile_img {
    width: 45%;
    height: 170px;
    background-image: url('/img/24jan.jpg');
    background-size: 125%;
    background-position: 52% 50%;
    border-radius: 50%;

    margin: 10px auto;
}

h1 {
    display: flex;
    justify-content: center;
}

.name {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-dark);
}

.work {
    font-size: 15px;
    color: #767268;
    text-align: center;
}

.profile__details{
    padding: 2rem 0;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.profile__details p {
    font-size: 13px;
    color:  #767268;
}

.profile__details h1 {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.about {
    font-size: 15px;
    color: #767268;
    text-align: justify;
    padding: 0px 30px;
}

.social__icons {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

}

.icon {
    width: 33px;
    height: 33px;
    text-decoration: none;
    display: grid;
    place-content: center;
    color: #f3f4f6;
    border-radius: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.instagram {
    background-color: #40b1f7;
}

.instagram:hover {
    box-shadow: 0px 2px 5px #40b1f7;
}

.linkedin {
    background-color: #3c5a9b;
}

.linkedin:hover {
    box-shadow: 0px 2px 5px #3c5a9b;
}

.snapchat {
    background-color: rgba(243, 243, 10, 0.978);
}

.snapchat:hover {
    box-shadow: 0px 2px 5px rgb(247, 247, 44);
}

.youtube {
    background-color: rgba(255, 0, 0, 0.667);
}

.youtube:hover {
    box-shadow: 0px 2px 5px red;
}

a {
    text-decoration: none;
    color: inherit;
}

.view__profile {
    width: 19%;
    margin: 2px auto;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #767268;
    color: #767268;
    font-size: 14px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 500;
}

.view__profile:hover {
    color: #f3f4f6;
    background-color: #31b6bf;
    border-color: #31b6bf;
    box-shadow: 0px 2px 10px #9ca3af;
}