* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.corpo{
    background: hsl(0, 0%, 8%);
}

div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: hsl(0, 0%, 12%);
    width: 345px;
    height: 560px;
    margin: 13% 0 0 38%;
    border-radius: 13px;
    color: #ffffff;
}

img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: 30px;
}

h1 {    
    margin-top: 20px;
    font-weight: 500;
    font-size: 23px;
    
}

h3 {
    margin-top: 5px;
    font-weight: 600;
    font-size: 13px;
    color: hsl(75, 94%, 57%);
}

p {
    margin: 23px 40px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    
}

a {
    text-decoration: none;
    color: #ffffff;
    padding: 13px;
    width: 287px;
    background: hsl(0, 0%, 20%);
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center  ;
    font-size: 15px;
    font-weight: 600;
}
a:hover {
    background: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    transition: 0.3s;
}

a:active {
    transform: scale(0.97);
}

@media screen and (max-width: 568px) {
    div {
        margin: 20% auto;
    }
    
}