@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    background-color: hsl(0, 0%, 12%);
    min-width: 100vw;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.main-container{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    background-color: hsl(0, 0%, 8%);
}

.main-card{
    background-color :hsl(0, 0%, 12%);
    border-radius: 15px;
    height: 45rem;
    width: 30rem;
    display: grid;
    grid-template-rows: 1.5rem 2fr 1fr 4fr 1.5rem;
    grid-template-columns: 1.5rem 1fr 1.5rem;    
}

.main-profile-container{
    grid-row: 2 / 3;
    grid-column: 2 / 3;   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.profile-name{
    font-size: 2rem;
    color: hsl(0, 0%, 100%);
}
.profile-address{
    font-size: 1.1rem;
    color: hsl(75, 94%, 57%);
}
.profile-img-container{
    width: 70px;
    height: 70px;    
}

.profile-img-container img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.job-title{
    grid-column: 2 / 3;
    grid-row: 3 /4 ;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: hsl(0, 0%, 100%);
}
.container-social{
    grid-row: 4 / 5;
    grid-column: 2 / 3 ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.box-link{
    display: inline-block;      
    width: 27rem;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;      
    background-color: hsl(0, 0%, 20%);
    color: white;      
}

.box-link a{
    text-decoration: none;
    font-weight: 600;    
    font-size: 1.2rem;
    color: inherit;
}

.container-social .box-link:hover{
    color: #2f3e18;
    background-color: hsl(75, 94%, 57%);
    cursor: pointer    
}