body {
    font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: bold;
	color: #fff; 
    margin: 0;
    padding: 0;
    background-color: #0d0000; /* Adjust background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background-color: #0d0000;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.links {
    margin-top: 20px;
}

.link {
    display: block;
    /* background-color: #26090e; /* Adjust colors */
	background-image: url("images/linkbkg.png");
    color: #fff;          /* Adjust colors */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.4s; 
}

.link:hover {
    /* background-color: #591521;  /* Adjust hover color */
	background-image: url("images/linkbkg_hover.png");
}
