/*-- Outer Box CSS --*/
.outerBox {
    height: 60vh;
    background: #030303;
    padding: 0 20px;
    margin: 100px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 6px 0px #030303;
    border-radius: 5px;
}

/*-- Inner Box CSS --*/
.innerBox {
    background: #030303;
    box-shadow: 0px 0px 6px 0px #ff9100;
    border-radius: 5px;
    padding: 30px;
    font-size: 20px;
}
P.text {
    text-align: center;
	color: #ffffff;
}
body {
  background-color: #030303;
}