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

body {
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    text-align: center;
}

.message {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.redirect-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
}

.redirect-btn:hover {
    opacity: 0.85;
}
