/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Container styling */
.container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

/* Heading */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Paragraph */
p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Redirect link */
.redirect-link {
    display: inline-block;
    font-size: 18px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.redirect-link:hover {
    color: #0056b3;
    text-decoration: underline;
}
