
body
{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.textBox
{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gColor);
    padding: 20px;
    border-radius: 10px;
    margin-top: 100px;
    position: relative;
    height: 200px;
}

.textBox::after
{
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background:var(--gColor);
    bottom: -15px;
    rotate: 45deg;
    z-index: -1;
}

.textBox  p
{
    color: #fff;
    font-weight: 400;
      font-size:18px ;
      line-height: 1.5;
}

.textBox  p i
{
    font-size: 20px;
}

.mans
{
    margin-top: 50px;
    width: 200px;
    align-self: center;
}

button
{
    width: 80%;
    margin-top: 30px;
    font-size:20px;
    font-weight: 600;
}