/*
  Mis Lecturas
  https://codeberg.org/plr/misperfiles

  Copyright (C) 2025 plr [Pedro Lázaro Rodríguez]
  Licensed under GNU Affero General Public License v3
  See: https://codeberg.org/plr/misperfiles/src/branch/main/LICENSE
*/

@font-face {
	font-family: 'Atkinson Hyperlegible';
	src: url('../fonts/Atkinson-Hyperlegible-Bold-102.otf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Atkinson Hyperlegible';
	src: url('../fonts/Atkinson-Hyperlegible-Italic-102.otf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Atkinson Hyperlegible';
	src: url('../fonts/Atkinson-Hyperlegible-Regular-102.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Atkinson Hyperlegible';
	src: url('../fonts/Atkinson-Hyperlegible-BoldItalic-102.otf') format('truetype');
	font-weight: bold;
	font-style: italic;
}

html {
	font-size: 17px;
}

body {
	font-family: 'Atkinson Hyperlegible', sans-serif;
	background-color: #1C1E2C;
	color: #EEE;
	margin: 1em auto 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 60rem;
	hyphens: auto;
	overflow-wrap: break-word;
}

header {
	text-align: center;
	margin-bottom: 1em;
}

header h1 {
	color: #FFFFFF;
	margin-bottom: 0.5rem;
	padding: 0 1em;
}

header h2 {
	color: #EEE;
	font-size: 16.5px;
	font-weight: normal;
	line-height: 1.5;
	padding: 0 1em;
}

.bloques {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding: 0 1em;
}

.categoria {
	background-color: #282A39;
	border-radius: 12px;
	display: flex;
	padding: 1rem;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 1px 10px #B100CC;
}

.titulo {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	margin-top: 0.25rem;
	color: #EEE;
	text-align: center;
	text-transform: uppercase;
}

.subtitulo {
	margin: 1rem auto !important;
	font-size: 1.2rem;
	font-weight: bold;
	color: #EEE;
	text-align: center;
	text-transform: uppercase;
}

.enlaces {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.enlaces li {
	margin: 0.5rem 0;
	width: auto;
}

.enlaces a, footer a {
	color: #C3C4FF;
	background: linear-gradient(135deg, #4e4f7d 10%, #DD00FF 100%);
	background-position: 0 95%;
	background-size: 100% 1px;
	background-repeat: no-repeat;
	text-decoration: none;
	display: inline-block;
	border-radius: 4px;
	text-align: center;
}

.enlaces a:hover, footer a:hover {
	background: none;
	text-decoration: none;
}

footer {
	text-align: center;
	color: #EEE;
	font-size: 16px;
    margin-top: 2em;
    line-height: 1.5;
	padding: 0 1em;
}

@media (max-width: 900px) {
	header h1 {
		padding: 0 1em;
		font-size: 1.5em;
	}
	.bloques {
        grid-template-columns: 1fr;
	}
}
