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

.container {
    text-align: center;
}

.logo img {
    max-width: 300px;
    margin-bottom: 30px;
}

.links {
    margin-top: 20px;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #cccccc;
}

.divider {
    color: #ffffff;
    margin: 0 15px;
}