@charset "UTF-8";
/* CSS Document */

body
{
	padding-bottom:50px;
	margin:0px;
	font-family: 'ProtoMono-Regular', Helvetica, Arial, Sans-Serif;
	background:#242424;
	height:100%;
}

#wrapper {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    height: 80%; /* Maintain height if needed */
    text-align: center;
		margin-top:7%;
}

p, a
{
	font-size:15px;
	line-height:120%;
	margin-top:10px;
	color:#feefd0;
}

a:hover
{
	text-decoration:none;
}

#footer {
    text-align: center;
    position: absolute;
    bottom: 6%;
    width: 100%;
}

#footer a
{
	font-size:10px;
	color:#feefd0;
	text-decoration: none;
	padding-right:15px;
}

#footer a:hover{
	color:#E4E5EA;
}

::-moz-selection
{
    color: #1D2129;
    background: #E4E5EA;
}

::selection
{
    color: #1D2129;
    background: #E4E5EA;
}

@media screen and (max-width:500px) {

	p, a
	{
		font-size:28px;
	}
	#footer a
	{
		font-size:12px;
	}
	.desktop
	{
		display:none;
	}
}

@media screen and (max-width:330px) {
	p, a
	{
		font-size:26px;
	}
}

img.logo
{
	display: block;
	margin: 0 auto; /* This centers the image horizontally */
	height: 300px;
	width: auto;
}
