/* Estilo básico de la página */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Encabezado */
header {
    text-align: center;
    padding: 2rem;
    background-color: #0073e6;
    color: #fff;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Contenedor principal */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Estilo de la lista de temas */
.tema-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

/* Tarjeta de cada tema */
.tema-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.tema-card:hover {
    transform: translateY(-5px);
}

.tema-card h2 {
    font-size: 1.8rem;
    color: #0073e6;
    margin-bottom: 0.5rem;
}

.tema-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Botón de enlace */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #0073e6;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #005bb5;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #0073e6;
    color: #fff;
    font-size: 0.9rem;
}
