@font-face {
    font-family: "inter";
    src: url(./assets/fonts/Inter-VariableFont_slnt\,wght.ttf)format("truetype");
    font-weight: 400, 600, 700;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(0, 0%, 8%);
    margin: auto;
    font-family: "inter";
}

.profile-card {
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: hsl(0, 0%, 100%);
    width: 300px;
}

.header img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.header h1 {
    color: hsl(0, 0%, 100%);
    margin-bottom: 0px;
    font-weight: 600;
}

.header sub {
    color: hsl(75, 94%, 57%);
    font-weight: 700;
}

.header p {
    padding: 10px;
    color: hsl(0, 0%, 100%);
    font-size: small;
    font-weight: 400;
}

.buttons a {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    text-decoration: none;
    font-weight: 600;
}

.buttons a:hover {
    background-color: hsl(75, 94%, 57%);
}