*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(0, 0%, 8%);
    margin-top: 50px;
}

section{
    background-color: hsl(0, 0%, 12%);
    margin: auto;
    width: 350px;
    height: 500px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}

img{
    border-radius: 50%;
    margin: 20px 80px 10px 80px;
    width: 100px;
}
top,h3,h4{
    font-family: sans-serif;
    text-align: center;
}
h3{
    color: white;
    
}
h4{
    color: greenyellow;
    
}
p{
    font-family: sans-serif;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-top: 20px;
}
.btns{
    display: grid;
    margin: 20px 5px;
    gap: 15px;
    border-radius: 5px;
}
button{
    background-color: hsl(0, 0%, 20%);
    color: white;
    border-radius: 5px;
    padding: 10px 50px;
    border-style: none;
    font-weight: 700;
    font-family: sans-serif;
}
