@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


body
{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #040404;
}

.status 
{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.main-container
{
    display: flex;
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
}

.msg
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--button, 16px);
}

.status h1
{
    color: #00C500;
    color: color(display-p3 0.2 0.7608 0);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; /* 40px */
    letter-spacing: -0.544px;
    margin: 0px;

}

.msg p
{
    color: var(--buttons-primary-text, #FFF);
    color: var(--buttons-primary-text, color(display-p3 1 1 1));
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 21.6px */
    letter-spacing: -0.272px;
        flex: 1 0 0;
    align-self: stretch;
    margin: 0px
}


.icon
{
    border-radius: 1000px;
    border: 1px solid rgba(0, 0, 0, 0.00);
    border: 1px solid color(display-p3 0 0 0 / 0.00);
    background: radial-gradient(100% 100% at 50% 0%, #000 54.17%, rgba(0, 0, 0, 0.30) 100%), #00C500;
    background: radial-gradient(100% 100% at 50% 0%, color(display-p3 0 0 0 / 0.00) 54.17%, color(display-p3 0 0 0 / 0.30) 100%), color(display-p3 0.2 0.7608 0);
    box-shadow: 0px -3px 2px 1px rgba(18, 18, 18, 0.15) inset;
    box-shadow: 0px -3px 2px 1px color(display-p3 0.0706 0.0706 0.0706 / 0.15) inset;
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 10px;
}

.btn-type1
{
    display: flex;
    width: 227px;
    height: 49px;

    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-radius: var(--button, 16px);
    border: 1px solid #211F15;
    border: 1px solid color(display-p3 0.1294 0.1216 0.0863);
    background: #0D0B01;
    margin: 0px;
    color: #FFD900;
    color: color(display-p3 1 0.8593 0.1208);
    
    /* font/body/default/medium/desktop */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 16.8px */
    letter-spacing: -0.272px;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);

}

.btn-type1:hover
{
    background: #272103;
    transform: translateY(-4px);
}

.AnyPost
{
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0px;
}

.btn-type2
{
    display: flex;
    width: 227px;
    height: 49px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: var(--button, 16px);
    border: 1px solid #FFD900;
    border: 1px solid color(display-p3 1 0.8593 0.1208);
    background: #FFD900;
    background: color(display-p3 1 0.8593 0.1208);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0px 2px 2px 0px color(display-p3 0 0 0 / 0.25) inset;
    text-decoration: none;
    color: #000;
    color: color(display-p3 0 0 0);

    /* font/body/default/medium/desktop */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 16.8px */
    letter-spacing: -0.272px;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-type2:hover
{
    background: hsl(51, 100%, 63%);
    transform: translateY(-4px);
}

.Lightning
{
    color: #000;
    color: color(display-p3 0 0 0);
    display: flex;
    align-items: center;
    gap: 4px;
    /* font/body/default/medium/desktop */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 16.8px */
    letter-spacing: -0.272px;
}

.buttons
{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: auto;
    align-self: stretch;
}