/*

Carlos Mayo, Visual Communication
Design and code by Carlos Mayo
carlosmayo.info
2018

*/

@charset "utf-8";
/* RESET CSS
================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
	display: block;
}
ol, ul, li{
	list-style: none;
}
*{
	box-sizing: border-box;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
:focus{
	outline: none;
}
img{
    max-width:100%;
    height:auto;
    height: calc(100vh - 6em);
}

/*	BASIC STYLES
================================================== */
::-webkit-scrollbar{
	display: none;
}
::selection{
	background-color: transparent;
	color: white;
}
body{
	margin:auto;
	width:100%;
	height:100%;
	background-color: #dcff00;
}
body, h1, h2, input{
	text-transform: uppercase;
	font:0em/100% helvetica, sans-serif;
	font-size: 12px;
	line-height: 1;
	font-variant-ligatures: discretionary-ligatures;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
}
#container{
	display:none;
}
a{
	text-decoration: none;
	color: black;
	cursor: pointer;
}
blockquote, q{
	quotes: "«" "»" """" """";
}
.hide{
	display:none;
}
.fullscreen{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left: 0;
}
.cover{
	background-repeat:no-repeat;
	-moz-background-size:cover;
	-webkit-background-size:cover;
	background-size:cover;
	background-position: center;
}
@page { size: auto;  margin: 0mm; }
@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
}

/* FONTS
================================================== */
@font-face {
    font-family: 'venice';
    src: url('../fonts/venice.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CURSORS
================================================== */
.cursor-none{
	cursor: none;
}
.pointer{
	cursor: pointer;
}

/* CONTENT
================================================== */
#content{
	position: absolute;
	font:0em/100% 'venice', sans-serif;
	font-size: 40vmin;
	line-height: 0.7;
	width: 90vw;
    	top: 50vh;
    	left: 50vw;
    	transform: translate(-50%, -50%);
    	text-align: center;
	border: none;
	background: transparent;
}
::placeholder{
	color: black;
}
[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block; /* For Firefox */
}
.buttons{
	position: absolute;
    bottom: 1rem;
    text-align: center;
    width: calc(100vw - 2rem);
    z-index: 999999999;
    line-height: 1.5;
    margin-left: 1rem;
    margin-right: 1rem;
}
#pdf{
	margin-right: 1rem;
}
#ttf{
	margin-left: 1rem;
}
#description{
	position: absolute;
    	margin-left: -25%;
    	left: 50%;
}
#description p:first-child{
	margin-top: 2em;
	text-indent: 0;
}
#description p:last-child{
	margin-bottom: 4em;
}
p{
	text-transform: none !important;
    	width: 50vw;
    	font-size: 18px;
	letter-spacing: -0.3px;
	line-height: 1.2;
    	text-align: justify;
    	text-indent: 50px;
    /* column-count: 2; */
    	hyphens: auto;
    	-webkit-hyphens: auto;
}
#lion1{
	position: absolute;
    left: 2em;
    top: 2em;
    background-color: #dcff00;
    z-index: 9;
}
#lion2{
	position: absolute;
    top: 2em;
    left: 2em;
    width: calc(100vw - 4em);
}
#lion3{
	position: absolute;
    right: 2em;
    background-color: #dcff00;
    top: 2em;
}
/* RESPONSIVE
================================================== */
/*SMALL LAPTOP + iPAD LANDSCAPE*/
@media only screen and (min-width: 320px) and (max-width: 1281px) {

}

/*IPAD*/
@media (min-width: 320px) and (max-width: 1025px){
	#description{
		margin-left: 5vw;
    		left: 0;
	}
	p{
		width: 90vw;
	}
}

/*IPAD LANDSCAPE*/
@media (min-width: 320px) and (max-width: 1025px) and (orientation: landscape){

}

/*IPAD PORTRAIT*/
@media (min-width: 320px) and (max-width: 1025px) and (orientation: portrait){
	img{
		height: calc(100vh - 36em);
	}
}

/*IPHONE LANDSCAPE*/
@media (min-width: 320px) and (max-width: 760px) and (orientation: landscape){

}

/*IPHONE PORTRAIT*/
@media (min-width: 320px) and (max-width: 760px) and (orientation: portrait){

}
