 @import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
body{
	font-family: 'Fira Mono', monospace;
	background-color: black;
	color:#dbdbdb;
	text-align: center;
}
 /* unvisited link */
a:link {
  /*color: #fd75ff;*/
  color: #53faac;
  font-weight: bold;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #f49ad9;

}

/* mouse over link */
a:hover {
  color: #dbdbdb;
}

/* selected link */
a:active {
  color: black;
  background-color: #dbdbdb;

} 

.mobileOnly{
		visibility: hidden;
		width: 0px;
		height: 0px;	
}

.mobileOnly > img{
	width: 75%;
}

#banner{
	width:100%;
}

@media (max-aspect-ratio: 10/11) {

	body{
		font-size: 2.5em;
	}
	.desktopOnly{
		visibility: hidden;
		width: 0px;
		height: 0px;
	}

	.mobileOnly{
		visibility: visible;
		width: auto;
		height: auto;
	}
}