/*img { max-width: 100%; }
/*==========  Mobile First Method  ==========*/
body {color: #000000;}

.vertical-center {
	min-height: 100%;  /* Fallback for vh unit */
	min-height: 100vh; /* You might also want to use
		                        'height' property instead.
		                        
		                        Note that for percentage values of
		                        'height' or 'min-height' properties,
		                        the 'height' of the parent element
		                        should be specified explicitly.
		  
		                        In this case the parent of '.vertical-center'
		                        is the <body> element */

		  /* Make it a flex container */
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex; 
		  
	/* Align the bootstrap's container vertically */
	-webkit-box-align : center;
	-webkit-align-items : center;
	-moz-box-align : center;
	-ms-flex-align : center;
	align-items : center;
		  
		  /* In legacy web browsers such as Firefox 9
		     we need to specify the width of the flex container */
	width: 100%;
		  
		  /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
		     hence the bootstrap's container won't be aligned to the center anymore.
		  
		     Therefore, we should use the following declarations to get it centered again */
	-webkit-box-pack : center;
	-moz-box-pack : center;
	-ms-flex-pack : center;
	-webkit-justify-content : center;
	justify-content : center;
}
#logo {
	margin-top: 10%;
	color: #000000;
    margin-bottom: 20px;
}
#logo p {
	clear: both;
	margin-top:1em;
}
#logo p img {
	clear: both;
	float: none;
}
#logo h1 {
	font-size: 16px;
	font-family: sans-serif;
	font-weight: bold;
}
address {
	color: #48120e;
}

address a {
	background-color: #ed2024;
	color: #FFFFFF; 
	padding: 2px;
}
address a:hover {
	text-decoration: none;
	background-color: #FFFFFF;
	color: #ed2024;
}
address p a {
	background-color: #ed2024;
	color: #FFFFFF;
	padding: 2px;
}
address p a:hover {
	background-color: #FFFFFF;
	color: #ed2024;
	padding: 2px;
}
footer {
    width: 100%;
    bottom: 0;
    position: fixed;
}
/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	#logo img {width: 100%; height: 100%;}
    #logo h1 {font-size: 14px; font-weight: normal; margin-top: 20%;}
}
@media only screen and (min-width : 321px) {
	#logo img {width: 100%; height: 100%;}
    #logo h1 {font-size: 14px;margin-top: 20%;}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
    #logo {margin-top:5%;}
  	#logo img {width: 80%; height: 80%;}
    #logo h1 {font-size: 20px;margin-top: 10%;}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
  	#logo img {width: 60%; height: 60%;}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
   	#logo img {width: 50%; height: 50%;}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
   	#logo img {width: 541px; height: 201px}
}