body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text color for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    background-color: #000; /* Slightly lighter dark background for contrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo img {
    max-width: 100%;
    margin-bottom: 20px;
    user-select: none; /* Disable text selection */
    -webkit-user-drag: none; /* Disable image dragging in WebKit browsers */
    -webkit-touch-callout: none; /* Disable callout menu on long press in iOS */
}

.links {
    display: flex;
    flex-direction: column;
}

.link-button {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background-color: #333333; /* Dark button background */
    color: #ffffff; /* Light text color */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #555555; /* Lighter shade on hover */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .logo img {
        max-width: 80%;
    }

    .link-button {
        padding: 8px;
    }
}