<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Alte Haas Grotesk Bold';
    src: url('../fonts/AlteHaasGrotesk_Bold.woff2') format('woff2'),
        url('../fonts/AlteHaasGrotesk_Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('../fonts/AlteHaasGrotesk.woff2') format('woff2'),
        url('../fonts/AlteHaasGrotesk.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --black: #363636;
  --white: #ffffff;
}

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--black);
	background-image: url('../images/area891-background.webp');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	display: flex;
	flex-direction: column;
	font-family: 'Alte Haas Grotesk', Arial, sans-serif;
	font-size: .8em;
	justify-content: space-between;
	position: relative;
}

a {
	color: var(--white);
	text-decoration: none;
}

header,
footer {
	flex-shrink: 0;
	padding: 10px;
}

footer {
	display: flex;
	justify-content: center;
}

main {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main-container {
	background-image: url('../images/area891-circle.webp');
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
	width: 60%;
}

main #main-container h1 {
	font-family: 'Alte Haas Grotesk Bold', Arial, sans-serif;
	font-size: 10vmax;
	line-height: .75em;
	margin: 0;
}

footer #footer-container {
	width: 80%;
}

sidebar {
	transform: rotate(-90deg); /* Ruota il div di -90Â° */
    transform-origin: bottom right; /* Imposta l'origine della trasformazione all'angolo in alto a destra */
    white-space: nowrap; /* Evita la rottura del testo a capo */
    position: fixed; /* Posizionamento fisso per aderire al lato destro dello schermo */
    top: 30%; /* Centrare verticalmente */
    right: 0; /* Allineare il div all'estrema destra */
    width: auto; /* Imposta la larghezza automaticamente in base al contenuto */
}

sidebar .fa-brands {
	font-size: 1.2em;
}

@media screen and (max-width: 1024px) {
	main #main-container h1 {
		font-size: 8vmax;
	}
}

@media screen and (max-width: 786px) {

	header {
		text-align: center;
	}

	main #main-container h1 {
		font-size: 6vmax;
	}
}</pre></body></html>