* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.message-box {
    background-color: #ffffff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 80%;
    min-height: 150px;
}

.main-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #777777;
    font-weight: 500;
}

@media (max-width: 768px) {
    .message-box {
        padding: 30px 20px;
        width: 90%;
    }

    .main-text {
        font-size: 18px;
    }

    .footer-text {
        font-size: 14px;
    }
}
