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


body {
    background-color: #141414;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

div {
    background-color: #1F1F1F;
    width: 320px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 12px;
}

img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-bottom: 24px;
}

h1 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

h2 {
    color: #C4F82A;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

p {
    color: #D4D4D4;
    font-size: 14px;
    margin-bottom: 32px;
}

button {
    background-color: #333333;
    color: white;
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    font-weight: 600;
}