@font-face {
    font-family: 'MesloLGNerdFont';
    src: url('/fonts/MesloLGLNerdFont-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    color: white;
    margin: 0;
    font-family: 'MesloLGNerdFont', Arial, sans-serif;
    text-align: left; /* Ensure default text alignment is to the left */
}

header, main, footer {
    max-width: 800px;
    margin: auto;
    padding: 10px;
}

.menu {
	display: flex;
	flex-wrap: wrap; /* allow menu items to wrap */
	justify-content: center;
	padding: 0;
	margin: 0 20px; /* add some horizontal margin for smaller screens */
	list-style-type: none;
}
.menu li {
	margin: 5px 8px;
}

.menu a, a {
    color: white;
    text-decoration: none;
}

h1, p {
	text-align: left; /* Explicitly align text to the left for readability */
}

@media (max-width: 600px) {
	h1 {
		font-size: 1.5em;
	}
	p {
		font-size: 0.9em;
	}
}

.download-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.download-button:hover {
    background-color: #0056b3;
}


