body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #231e47;
}
.custom-box {
    background: #dad9d9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.btn-custom {
    width: 150px;
    transition: transform 0.2s;
}
.btn-custom:hover {
    transform: scale(1.1);
}