@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&family=Noto+Sans+Mono&display=swap');
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #1c1c1c;
	color: white;
	padding: 15px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.top-bar a{
	color: white;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
	font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
}

.nav-menu {
    list-style-type: none;
	display: flex;
	gap: 5px;
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', sans-serif;
}

.nav-menu li{
    display: inline;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.nav-menu li a.active {
    background-color: #a7c3d1; /* Light blue, adjust to match */
    color: black;
}

.nav-menu li a:hover {
    background-color: #333; /* Slightly lighter black */
}

body {
	background-color: #f9f9f9;
	color: #1c1c1c;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
    padding-top: 70px;
    min-height: calc(100vh - 70px);
}

.centered-div {
    max-width: 400px;
    width: 100%;
	text-align: center;
    margin: 50px auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
}

p {
    font-family: 'Noto Sans Mono', monospace;
    font-size: 12px;
}

a {
    text-decoration: none;
}

button {
    display: inline-block;
    width: 150px;
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    background-color: #c6ddea;
    color: #1c1c1c;
    cursor: pointer;
    font-family: 'Noto Sans Mono', monospace;
}

button:hover {
    background-color: #a6c8e5;
}

@media (max-width: 600px) {
    body {
        flex-direction: column;
	align-items: center;
    }

	.centered-div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    button {
        width: 150px;
        margin: 10px;
    }

    p {
        font-size: 14px;
    }

    h4 {
        font-size: 18px;
    }
}

#snow {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 pointer-events: none;
 z-index: -1;
}
