@import url("fixes/reset.css");
@import url("fixes/fonts.css");
@import url("fixes/base.css");
@import url("fixes/clearfix.css");

/* FONTS */
@font-face {
    font-family: 'theano_didotregular';
    src: url('fonts/theanodidot-regular-webfont.eot');
    src: url('fonts/theanodidot-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/theanodidot-regular-webfont.woff2') format('woff2'),
         url('fonts/theanodidot-regular-webfont.woff') format('woff'),
         url('fonts/theanodidot-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* PAGE LAYOUT */
* {
	box-sizing: border-box;

}
body {
	margin: 0;
	padding: 0;
	font-family: 'theano_didotregular', Helvetica, Arial, "sans-serif";
	background-color: #f7ebdbff;
	font-size: 1.25em;
	text-align: center;
}
main{
	width: 100%;
	padding: 60px 0;
}
main img{
	width: 40%;
}
a{
	color:#7d5168ff;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
p.address{
	margin-bottom: 3vh;
}
p.copyright{
	font-size: 0.6em;
}


@media only screen and (max-width: 900px) {
	main img{
		width: 80%;
	}
	body {
		font-size: 1em;
		padding: 0 20px;
	}
  }


