*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    list-style: none
    
}
body{
    background-color: hsl(0, 0%, 8%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-wrap: wrap;
}
.container{
    background-color: hsl(0, 0%, 12%);
    border-radius: 8px;;
    padding: 30px;
    width: 320px;
    height: 510px;
    text-align: center;
    margin: 0px;
    
    
}
.image1{
    width: 30%;
    height: auto;
    border-radius: 50%;
    margin: 10px;
}


.name{
    color: hsl(0, 0%, 100%);
    font-size: 20px;
    margin-top: 10px;
}

.from{
    color: hsl(75, 94%, 57%);
    font-size: 12px;
    margin: 10px;
}

.text{
    color: hsl(0, 0%, 100%);
    font-size: 11px;
    margin: 20px;
}
.socials li a{
    font-size: 12px;
    font-weight: 600;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    margin-top: 15px;
    border-radius: 5px;
    width: 100%;   
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    
}

.socials li a:hover{
    background-color: hsl(75, 94%, 57%);
    cursor: pointer;
    color: hsl(0, 0%, 20%);
}
