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

/*
Front-End: Sergio Camalich Morales
Author URL: http://www.camali.ch
*/

/*
RESET
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, 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;
}
html,
body {
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border:none;
	outline:none;
}

a {
	text-decoration: none;
}

/*
FONTS
*/

h1, h2, h3, h4, h5, h6 {
 font-family: 'Times New Roman', serif;   
}

h1 {
    font-weight: bold;
}

h2 {
    font-size: 1.7rem;
}

/*
MAIN
*/

.app {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: max-content;
}

figure {
    margin: 0;
    flex: 0 0 auto;
}

figure img {
    display: block;
    height: 100vh;
    width: auto;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.headline {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.title {
    flex: 0 0 auto;
    margin: 0;
    font-size: 90vh;
    line-height: 100%;
    white-space: nowrap;
}

.author {
    padding: 0 40px 0 0;
}