.container{
    background-color: hsl(0, 0%, 12%);
    padding : 25px;
    height : 550px;
    width : 300px;  
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.name {
    font-size: 30px;
    font-weight: 700;
    margin : 5px;
}

p{
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    margin : 15px;
}

.address{
    color: hsl(75, 94%, 57%);
    margin-top: 3px;
}

body {
    background-color : hsl(0, 0%, 8%);
    height : 90vh;
    display : flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button{
    background-color: hsl(0, 0%, 20%);
    width : 90%;
    border-radius: 7px;
}

img{
    border-radius: 100px;
    height: 75px;
    margin : 5px;
}

.container a{
    background-color:  hsl(0, 0%, 20%);
    padding : 10px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin : 10px 0;
    width :250px;
}

.links{
    display: flex;
    flex-direction: column;
    text-align: center;
    
}