@charset "utf-8";
/* CSS Document */
:root {
    --primary-color: #4CAF50; /* Primary color for your links */
    --background-color: #333; /* Background color of the page */
    --text-color: #fff; /* Color of the text */
    --hover-color: #45a049; /* Color when hovering over links */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.links {
    list-style: none;
    padding: 0;
}

.links li a {
    display: block;
    margin: 10px 0;
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links li a:hover {
    background-color: var(--hover-color);
}

@media (max-width: 600px) {
    .links li a {
        padding: 10px 20px;
    }
}

