body {
    background-color: #f4f4f4; /* Light gray background */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.warning-container {
    background-color: #fffee6; /* Pale yellow background for the warning box */
    border: 2px solid #ffcc00; /* Yellow border */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    color: #cc0000; /* Dark red color for high visibility */
    font-size: 1.5em;
}

p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.button {
    background-color: #cc0000; /* Red button */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.button:hover {
    background-color: #990000; /* Darker red on hover */
}
