/* styles.css */
html {
	background-color: #f5f2f0;
}

#frame, #compass, #map {
    background-color: white;
    padding : 10px;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre; /* Preserve white spaces */
    text-align: center;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

body {
	margin: 0;
	font-family: 'Roboto', "Courier New", sans-serif, monospace, Arial, Helvetica;
	font-size: 13;
}

.topnav {
	overflow: hidden;
	font-family: Roboto, sans-serif;
}

.topnav a {
	color: black;
	float: right;
	text-align: center;
	padding-top: 18px;
	padding-bottom: 11px;
	padding-left: 2px;
	padding-right: 2px;
	margin-left: 11px;
	margin-right: 11px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
}

.topnav a.main {
	float: left;
	font-size: 20px;
	font-weight: 300;
	padding: 16px 17px;
}

.topnav a.active {
	border-bottom: 8px solid #FFD54F;
}

.topnav a.active:hover {
	color: #777777;
	border-bottom: 8px solid #FBE18F;
}

.topnav a.inactive:hover {
	color: #777777;
}

.content {
	padding-left: 64px;
	padding-right: 64px;
	font-family: "Courier New", monospace;
}

.content h1 {
    font-size: 26px;
    font-weight: bold;
}

.content h2 {
    font-size: 16px;
    font-weight: normal;
}

.content button {
    display: inline-block;
	background-color: #FFD54F;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px;
	border-style: none;
	font-family: "Courier New", monospace;
}

.flash {
	background-color: #FFD54F;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;
}