body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #232f3e;
    /* Amazon's dark blue color */
    font-family: Arial, sans-serif;
    background: url(https://www.paraanaliz.com/wp-content/uploads/2021/04/amazon-eth.jpg);
    background-size: cover;
    background-position: center;

}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    /* White background with slight transparency */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: -300px;
}

.message {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .message {
        font-size: 20px;
        /* Smaller font size for mobile devices */
    }
}