body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-color: #f4f4f4;
            color: #333;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
}
.container {
            max-width: 600px;
            width: 100%;
            padding: 40px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            flex-grow: 1; /* Allows the container to take up available space */
            display: flex;
            flex-direction: column;
            justify-content: center;
}
h1 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 20px;
}
p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 30px;
}
.links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
}
.links a {
            text-decoration: none;
            color: #fff;
            background-color: #3498db;
            padding: 12px 25px;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
}
.links a:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
}
.language-switcher {
            margin-top: 20px;
}
.language-switcher a {
            text-decoration: none;
            color: #34495e;
            font-weight: bold;
            transition: color 0.3s ease;
}
.language-switcher a:hover {
            color: #e74c3c;
}
.footer {
            margin-top: auto; /* Pushes the footer to the bottom */
            padding-top: 20px;
            font-size: 0.8em;
            color: #777;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
                font-size: 2em;
    }
    .links a {
                padding: 10px 20px;
    }
}
@media (max-width: 480px) {
    .container {
                padding: 25px;
    }
    h1 {
                font-size: 1.8em;
    }
    .footer {
                padding-top: 10px;
    }
}