@font-face {
    font-family: 'MarioKartWiiPlacement-Regular';
    src: url('Police/MarioKartWiiPlacement-Regular.woff2') format('woff2'),
         url('Police/MarioKartWiiPlacement-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
	margin-right: 25%;
	margin-left: 25%;

	font-family: 'MarioKartWiiPlacement-Regular';
  	background-color: black;
  	color: white;
  	animation: neon-animation 4s infinite alternate, color-animation 4s infinite alternate;
  	margin-right: 25%;
    margin-left: 25%;
}
@keyframes color-animation {
  0%, 50% { color: white; }
  100% { color: #808080; }
}
@keyframes neon-animation {
  0%, 50% { text-shadow: 0 0 10px white; }
  100% { text-shadow: 0 0 10px #808080; }
}

.text-container {
    display: inline;
    padding: 10px;
}
pre {
    background-color: #000000;
    padding: 10px;
    border: 1px solid #ccc;
        }
code {
    color: #FFFFFF;
    font-size: 20;
        }
button {
    display: block;
    background-color: #ffffff;
    cursor: pointer;
    font-family: 'MarioKartWiiPlacement-Regular';
}