/* Paleta de colores */
:root {
    --background-color: #121212;
    --primary-color: #ff69b4;
    --secondary-color: #ff1493;
    --text-color: #ffffff;
    --border-color: rgba(85,18,89, 0.8);
    --hover-color: #ff1493;
}

body {
    background-color: black !important;
    color: var(--text-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
	 background: url('../img/background.png') no-repeat center center fixed;
    background-size: cover;
}

/* Estilos de encabezado */
h1, h2 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: var(--primary-color);
}

h2 {
    font-size: 2em;
    color: var(--secondary-color);
}

@font-face {
    src: url("./font/nexaheavy.ttf");
    font-family: nexaheavy;
}

.jpbox {
    color: var(--text-color);
    background-color: var(--background-color);
    border: 5px solid var(--border-color);
    margin-bottom: 40px; /* Aumentar el espacio entre secciones */
    padding: 30px; /* Añadir padding interno */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    border-radius: 8px; /* Bordes redondeados */

}
.jpspace{
	padding-left: 1rem !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
canvas {
    z-index: -3;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
    height: auto;
}

p, a, ul, li {
    font-size: 18px;
    font-family: 'Helvetica Neue', sans-serif;
}

p, a {
    margin-bottom: 20px;
}

.jplinks {
    margin-bottom: 50px;
}

.download-link {
    color: var(--primary-color); /* Color llamativo */
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease; /* Transición suave */
}

.download-link:hover {
    color: var(--hover-color); /* Color al pasar el mouse */
}

/* Efectos de transición */
a:hover, button:hover {
    color: var(--hover-color);
    transition: color 0.3s ease;
}

/* Ajustes de accesibilidad */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}
.jpmaincontainer{
	max-width: 80%;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-left: 15px;
        padding-right: 15px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.5em;
    }

    p, a, ul, li {
        font-size: 16px;
    }
}

/* Estilos para listas */
ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 15px;
    list-style-type: none;
}

/* Estilos para enlaces en listas */
ul li a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    background-color: rgba(255, 105, 180, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

ul li a:hover {
    background-color: rgba(255, 105, 180, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* Estilos para todos los enlaces */
a {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    background-color: rgba(255, 105, 180, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-bottom: 10px;
}

a:hover {
    background-color: rgba(255, 105, 180, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* Ajustes específicos para enlaces en listas */
ul li a {
    display: block;
}

/* Eliminar estilos predeterminados de las listas */
ul {
    list-style-type: none;
    padding-left: 0;
}

/* Estilos para enlaces generales */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

