body{
    background-color: hsl(0, 0%, 8%);
    margin: 0;
    padding: 0;
}

.main{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.card{
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 600px;
    justify-content: top;
    background-color: hsl(0, 0%, 12%);
    border-radius: 20px;
    margin: 0;
    align-items: center;
    text-align: center;
    
}

.card img{
    width: 88px;
    height: 88px;
    margin: 0;
    border-radius: 50%;
    margin-top: 34px;
}

.card h1{
    font-family: "Inter", serif;
    font-weight: 700;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 8px;
}
.card h2{
    font-family: "Inter", serif;
    font-weight: 700;
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    margin: 0;
}

.card h3{
    font-family: "Inter", serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    margin-top: 34px;
    margin-bottom: 24px;
}

.card .btn{
    font-family: "Inter", serif;
    font-weight: 600;
    color: #ffffff;
    background-color: hsl(0, 0%, 20%);
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    align-self: left;
    border-radius: 8px;
    border: 0;
    width: 280px;
    height: 50px;
    margin-bottom: 14px;
}

.card .btn:hover{
    cursor: url(./images/icons8-cursor-26.png), auto;    
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}
.attribution{
    font-family: "Inter", serif;
    font-size: 8px;
    color: #ffffff;
    margin-bottom: 4px;
}