html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #000000;
	background-image: url('images/blueglass.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	font-family: Arial, sans-serif;
	color: #ffffff;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
	height: 70px; /* Altura ajustada */
}
.block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.block.images img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#Image1 {
	left:33px;
	top:27px;
	width:68px;
	height:73px;
	z-index:1;
}
#Image2 {
	left:8px;
	top:6px;
	width:118px;
	height:113px;
	z-index:2;
	animation: transform-rotate 3s ease 1s infinite normal;
}
@keyframes transform-rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(359deg); }
}
.block.middle {
	text-align: center;
	font-family: 'Playfair Display', serif;
	color: #ffffff;
	text-orientation: ;
}
.block.middle .title {
	font-size: 3em; /* Ajusta el tamaño de la fuente */
	font-weight: 700;
	margin: 0;
	display: block;
}
.block.middle .subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
	margin: 0;
	letter-spacing: 0.1em;
	position: relative;
}
.block.middle .subtitle::before, .block.middle .subtitle::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 50px; /* Ajusta el largo de la línea */
	height: 2px;
	background: #ffffff;
}
.block.middle .subtitle::before {
	left: -60px; /* Ajusta la distancia de la línea al texto */
}
.block.middle .subtitle::after {
	right: -60px; /* Ajusta la distancia de la línea al texto */
}

.block.title {
	text-align: center;
}
.block.title h1 {
	margin: 0;
	font-size: 2em;
}
.article-window {
	width: 80%;
	max-width: 800px;
	height: calc(100vh - 150px - 40px - 40px); /* Altura ajustable */
	margin: 20px auto; /* Separación con el header */
	padding: 20px;
	background: linear-gradient(180deg, #6794c6, #000040); /* Degradado azul marino */
	border: 2px solid #a8d5ec; /* Borde blanco */
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra */
	color: #ffffff;
	text-align: justify;
	overflow-y: auto; /* Scroll vertical interno */
}
footer#main-footer {
	width: 100%;
	padding: 10px 0;
	background: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
}
footer#main-footer a {
	color: #ffffff;
	text-decoration: none;
}