body {
    margin: 0;
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.button-group a button {
    width: 200px;
    background-color: #ff3c3c;
    color: #fff;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button-group a button:hover {
    background-color: #e63232;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #222;
	color: #fff;
	text-align: right;
	padding: 15px 20px;
	font-size: 14px;
	box-shadow: 0 -1px 5px rgba(0,0,0,0.3);
}

.footer a {
	color: #ddd;
	text-decoration: none;
	margin: 0 10px;
}

.footer a:hover {
	text-decoration: underline;
}