* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

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

#card {
    height: 500px;
    width: 280px;
    border-radius: 10px;
    background-color: hsl(0, 0%, 12%);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 20px;
}

#buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.button {
    height: 40px;
    width: 240px;
    background-color: hsl(0, 0%, 20%);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;

}

p {
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
}

img {
    height: 80px;
    width: 80px;
    border-radius: 100px;
    margin-bottom: 18px;
    margin-top: 20px;
}

h1 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

h3 {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 11px;
    color: hsl(75, 94%, 57%);
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 11px;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    opacity: 75%;
}

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

.button:hover p {
    color: hsl(0, 0%, 20%);
}