/* Import the custom font from a link (replace with your font's actual link) */

/* Set the page background to black */

@font-face {
    font-family: 'MatrixFont';
    src: url('matrixfont.woff') format('woff'), /* Web Open Font Format */
    /* You can specify additional font properties such as font-weight and font-style if needed. */
}

body {
    background-color: black;
    text-align: center;
}

/* Set the font color to green */
body {
    color: green;
}

/* Set the font size to 20dp (you may also use 'px' for pixels) */
body {
    font-size: 20dp;
    font-family: '@MatrixFont', sans-serif; /* Use the custom font */
    text-align: center; /* Center the contents horizontally */
}

.centered-image {
	text-align: center; /* Center the contents horizontally */
}

.centered-image img {
	display: block;
	#margin: 0 auto; /* Center the image within its container horizontally */
	margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
	width: 50%;
}
