html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: inter;
    background-color: #141414;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    background-color: #1F1F1F;
    border-radius: 12px;
    min-width: 384px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 40px;
}

img{
    width: 88px;
    border-radius: 44px;
    margin-bottom: 24px;
}

h1{
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: 0;
    margin: 0;
}

h2{
    color: #C4F82A;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 150%;
    letter-spacing: 0;
    margin: 0;
}

p{
    color: #ffffff;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 150%;
    letter-spacing: 0;
    margin: 24px 0 24px 0;
}

button{
    border: 0;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 150%;
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #333333;
    transition: 0.3s ease;
}

button:hover{
    background-color: #C4F82A;
    color: #333333;
    cursor: pointer;
}

.container button:last-child{
    margin-bottom: 0;
}