
.main
{
    width: 100%;
    height: 100vh;
    background-color: rgb(19, 19, 19);
    display: flex;
    justify-content: center;
    align-items: center;
    >.box2
    {
        width: 500px;
        height: 370px;
        border-radius:30px;
        border:10px solid rgb(225,246,255);
        box-shadow:0 0 60px 2px #4b4bff,inset 0 0 60px 2px #4b4bff;
        display: flex;
        justify-content: center;
        align-items: center;
        >h2
        {
            color:white;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
            text-transform: capitalize;
            font-size: 6rem;
            font-style:italic;
            font-weight:normal;
            text-shadow: 2px 2px 30px orangered,-2px -2px 30px orangered,
            2px 2px 10px rgb(255,215,201),-2px -2px 30px rgb(255,215,201);
        
        }
    }
}
/* end */


