:root {
    --S-Dark-Grey: hsl(0, 0%, 8%);
    --M-Dark-Grey: hsl(0, 0%, 12%);
    --L-Dark-Grey: hsl(0, 0%, 20%);
    --Green: hsl(75, 94%, 57%);
    --White: hsl(0, 0%, 100%)
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--S-Dark-Grey);
    font-family: "Inter", serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--White);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    background-color: var(--M-Dark-Grey);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-width: 350px;
    width: 350px;
    height: auto;
    margin: 0 20px;
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.profile_Image {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.profile-card h1 {
    font-size: 1.4rem;
}

.profile-card .address {
    color: var(--Green);
    font-weight: 700;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}
.profile-card .skill {
    color: #b4b4b4;
    font-size: 0.8rem;
    margin-bottom: 1.3rem;
}
.social-links .social_btn {
    background-color: #424242;
    border: none;
    color: var(--White);
    font-weight: 600;
    width: 80%;
    padding: 12px 32px;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
@media (max-width: 768px) {
    
    .social-links .social_btn {
        width: 90%;
    }

}

.social-links .social_btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.social-links .social_btn span:after {
    content: ' \27A4';
    position: relative;
    opacity: 0;
    top: 0;
    right: -30px;
    transition: 0.2s;
}
.social-links .social_btn:hover span {
    padding-right: 25px;
}
.social-links .social_btn:hover span:after {
    opacity: 1;
    right: -10px;
  }
.social-links .social_btn:hover {
    background-color: var(--Green);
    color: var(--L-Dark-Grey);
}



footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--M-Dark-Grey);
    color: var(--White);
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;    
    font-weight: 400;
}
footer a {
    color: var(--Green);
    text-decoration: none;
    font-weight: 700;
}
