body {
    background-color: black;
}

.main {
    margin: 3% auto;
    width: 25%;
    background-color: hsl(0, 2%, 10%);
    height: 600px;  
    overflow: hidden;
    text-align: center;
    border-radius: 15px;

}

.main img {
    border-radius: 50%;
    width: 25%;
    margin-top: 35px;
}

.main h1 {
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 450;
    margin-bottom: -4px;
}

.main h2 {
    color:  hsl(75, 94%, 57%);
    font-size: 17px;
    font-family: "Inter", sans-serif;
    margin-bottom: 35px;
}

.main h3 {
    color: rgb(196, 198, 202);
    font-size: 14px;
    font-family: "Inter", sans-serif;
    margin-bottom:20px ;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 15px;
}

.btn a {
    color:white;
    background-color:  hsl(0, 0%, 20%) ;
    padding: 13px;
    font-family: "Inter", sans-serif;
    width:75%;
    font-size: 13px;
    border-radius: 7px;
    font-weight: 500;
}

.btn a:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
    cursor: pointer;
}