:root {
	--colorPrimary:rgb(27,27,27);
	--colorSecondary:rgb(69,69,69);
	--colorPost:rgb(96,96,96);
	--colorBorder:rgb(200,200,200);
	--colorBackground:rgb(230,230,230);
	--colorFront:rgb(255,255,255);
	--width:500px;
} * {
	padding:0;
	margin:0;
	box-sizing:border-box;
	font-family:'Roboto', sans-serif;
	user-select:none;
} input, button, textarea, select {
	outline:none;
	box-shadow:none;
	min-width:0 !important;
} img {
	pointer-events:none;
} body {
	height:100vh;
	width:100vw;
	overflow:hidden;
	display:flex;
	flex-direction:column;
	align-items:center;
	background-color:var(--colorBackground);
} aside {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	background-color:var(--colorBackground);
	z-index:9;
} aside img {
	height:132px;
	width:auto;
	transition:all 0.5s;
} aside.full img {
	transform:scale(0.7);
} footer {
	padding:9px;
	width:var(--width);
	display:flex;
	justify-content:space-between;
} footer a, footer p {
	font-size:12px;
	color:var(--colorSecondary);
	text-decoration:none;
} footer a:hover {
	color:var(--colorPrimary);
} header {
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:27px 9px;
} header img {
	height:39px;
	margin-right:9px;
} header strong {
	font-size:33px;
	color:var(--colorPrimary);
} main {
	flex:1;
	width:100%;
	overflow-x:hidden;
	overflow-y:auto;
	padding:18px;
} main h2 {
	width:100%;
	font-size:21px;
	font-weight:normal;
	color:var(--colorSecondary);
	margin-top:27px;
} main > p {
	width:100%;
	font-size:15px;
	color:var(--colorPost);
	margin-top:18px;
} #almWebs {
	margin-top:18px;
	display:flex;
	flex-wrap:wrap;
	gap:18px;
} #almWebs a {
	position:relative;
	flex:1;
	min-width:calc((100% - 54px)/7);
	text-decoration:none;
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	justify-content:center;
	background-color:var(--colorFront);
	padding:18px;
	border-radius:5px;
	overflow:hidden;
} #almWebs a > img {
	position:absolute;
	top:-50%;
	left:-50%;
	width:200%;
	height:200%;
	filter:blur(39px);
	z-index:0;
	opacity:0.132;
	object-fit:cover;
} #almWebs a div {
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:1;
} #almWebs a div img {
	height:27px;
	margin-right:9px;
} #almWebs a div strong {
	text-align:center;
	font-size:27px;
	color:var(--colorPrimary);
} #almWebs a span {
	width:100%;
	text-align:justify;
	margin-top:18px;
	color:var(--colorSecondary);
	z-index:1;
} #almWebs a::after {
	content:"Visitar";
	margin-top:18px;
	font-size:16px;
	color:var(--colorPrimary);
	background-color:var(--colorBackground);
	padding:6px 9px;
	border-radius:3px;
	border-bottom:2px solid var(--colorBorder);
	z-index:1;
} #almWebs a:hover {
	filter:brightness(0.98);
} #almWebs a:hover::after {
	border-bottom:2px solid var(--colorPost);
}

@media screen and (orientation: portrait) {
:root {
	--width:calc(100vw - 18px);
} #body footer a, #body footer p {
	font-size:10px;
	text-align:center;
} #almWebs a {
	min-width:calc((100% - 18px)/2);
}
}