body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* main background white */
}

.center-box {
    background-color: #ffffff; /* box background white */
    padding: 80px 160px;
    border: 1px solid #e0e0e0; /* light grey border */
    border-radius: 8px;
    font-family: "Times New Roman", Times, serif; /* Times New Roman font */
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #888686; /* grey text */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1); /* shadow on right & bottom */
}