* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #2E498C;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.notification {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: #2E498C;
}

.notification h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.notification p {
    font-size: 18px;
    margin-bottom: 15px;
}

.link {
    display: inline-block;
    font-size: 20px;
    background-color: #2E498C;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.link:hover {
    background-color: #1e3570;
}
