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

.container {
    background-color: #A9A9A9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    margin-bottom: 20px;
    font-size: 1.8em;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    background-color: #e67e22;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #d35400;
}

.footer {
    margin-top: 20px;
    font-size: 0.9em;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
