*{
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

body{
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    height: 72vh;
    border-radius: 12px;
}

.img{
    border-radius: 80%;
    height: 75px;
    width: 75px;
    padding: 25px 0 16px 0;
}

.name{
    font-size: 18px;
}

.address{
    padding: 8px;
    color: hsl(75, 94%, 57%);
    font-size: 11px;
    font-weight: 650;
}

.para{
    padding-top: 14px;
    font-size: 12px;
}



/* *** */
.link-box{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 15px;
    align-items: center;
}


.link-button{
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 20%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 250px;
    border-radius: 8px;
    /* this is for hover effect */
    transition: all 0.3s ease;
}


.link-button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 12%);
}