<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Panchiroli</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
background-color: #111;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 700px;
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
}
span {
color: #0F4C81;
}
p {
font-weight: 300;
font-size: 1.2rem;
opacity: 0.8;
}
footer {
margin-top: 40px;
font-size: 0.8rem;
opacity: 0.5;
}
</style>
</head>
<body>
<div class="container">
<h1>Panchiroli<span>.</span></h1>
<p>Comunicación. Cultura. Tecnología.</p>
<p>Sitio en construcción.</p>
<footer>
© 2026 Francisco Gallardo Gianni
</footer>
</div>
</body>
</html>