@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    --green: hsl(75, 94%, 57%);
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);
}

body {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--grey-900);
    height: 100vh;
    margin: auto;
    font-size: 14px;
    font-family: "Inter", serif;
}

.business_card {
    background-color: var(--grey-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 55px;
    max-width: 300px;
    border-radius: 1rem;
}
.profile_picture{
    width: fit-content;
}

.profile_picture img{
    border-radius: 9999px;
    aspect-ratio: 1/1;
    width: 100px;
    
}

.profile_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.profile_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.profile_name {
    font-size: 1.6rem;
    color: white;
    margin: 0;
    margin-top: 0.5rem;
    font-weight: 600 ;
}

.profile_location {
    color: var(--green);
    margin: 0;
    font-weight: 700 ;
}

.description {
    color: rgb(168, 168, 168);
    font-weight: 700 ;
}


.social{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    gap: 1rem;
    width: 100%;
}

.social li{
    list-style: none;
}

.social li a button {
    transition: 0.5s;
    background-color: var(--grey-700) ;
    color: white;
    font-weight: 600;
    width: 100%;
    border-radius: 0.5rem;
    border: none;
    padding: 1rem 0rem;
}

.social li a button:hover{
    transition: 0.5s;
    background-color: var(--green);
    color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 376px) {
    body{
        padding: 1rem;
    }

    .business_card{
        padding: 39px;
    }
  }
  