
/* --------------------------------------------
	GENERAL RULES
-------------------------------------------- */

* {
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-font-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: black;
}
::-moz-selection {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased
}
::selection {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased
}



/* --------------------------------------------
	FONTS
-------------------------------------------- */

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Bold.eot');
    src: url('../fonts/AcuminPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AcuminPro-Bold.woff2') format('woff2'),
        url('../fonts/AcuminPro-Bold.woff') format('woff'),
        url('../fonts/AcuminPro-Bold.ttf') format('truetype'),
        url('../fonts/AcuminPro-Bold.svg#AcuminPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Regular.eot');
    src: url('../fonts/AcuminPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AcuminPro-Regular.woff2') format('woff2'),
        url('../fonts/AcuminPro-Regular.woff') format('woff'),
        url('../fonts/AcuminPro-Regular.ttf') format('truetype'),
        url('../fonts/AcuminPro-Regular.svg#AcuminPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* --------------------------------------------
	TYPE INFOS
-------------------------------------------- */

html {
	font-size: 10px;
}
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

body {
	background: #FFF;
	font-family: 'Acumin Pro', Helvetica, sans-serif;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.2;
}

p {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Acumin Pro', Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}

/*h1 {
	font-size: 7rem;
}
@media (max-width: 767px) {
	h1 {
		font-size: 6rem;
	}
}*/
h1,
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2.5rem;
	font-weight: normal;
}

a {
	text-decoration: none;
}
a:active,
a:focus,
a:hover {
	text-decoration: underline;
}



/* --------------------------------------------
	STRUCTURE
-------------------------------------------- */

html,
body,
#main {
	height: 100%
}

#main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 20px 10px;
}
@media (min-width: 768px) {
	#main {
		padding: 30px;
	}
}

#header {

}

#footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
@media (max-width: 767px) {
	#footer {
		align-items: start;
		flex-direction: column;
		justify-content: normal;
	}
	#footer div {
		width: 100%;
	}
	#footer a {
		display: inline-block;
		min-width: 100px;
	}
	#footer a#email {
		padding-left: 20px;
		text-align: left;
	}
	#footer a#instagram {
		padding-right: 20px;
		text-align: right;
	}
}



/* --------------------------------------------
	ELEMENTS
-------------------------------------------- */

#intro {
}

#logo {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 30px 0;
	width: 100%;
}
#logo img {
	width: 160px;
}
@media (min-width: 768px) {
	#logo {
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		z-index: -1;
	}
	#logo img {
		width: 300px;
	}
}

#nomi {
}
@media (max-width: 767px) {
	#nomi {
		border-bottom: 1px solid #000;
		padding-bottom: 20px;
		margin-bottom: 15px;
	}
}

#contact {
}
@media (max-width: 767px) {
	#contact {
		display: flex;
		justify-content: space-around;
	}
}


