#fondo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(60%) blur(1px);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
.bloque {
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	min-height: 100vh;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
}
html, body {
	scroll-behavior: smooth;
  overflow: hidden;
}


.container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	background-color: #000;
	color: #fff;
	
}
img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

nav {
	position: fixed;
    width: fit-content;
    inset-inline: 0px;
    margin: auto;
    margin-top: 1px;
    padding: 0 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: url(#wave-distort);
    backdrop-filter: url(#wave-distort);
}

nav > ul {   
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	height: 55px;
	isolation: isolate;
	padding: 0 15px;
}
nav > ul::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 12px;
	height: 12px;
	background: white;
	border-radius: 50%;
	transform: translateX(var(--translate-x, 0)) translateY(var(--translate-y, 0)) rotate(var(--rotate-x, 0deg));
	transition: none;
	opacity: 0;
	z-index: -1;
	box-shadow: 
		0 4px 16px rgba(255, 255, 255, 0.118),
		0 2px 8px rgba(255, 255, 255, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.8),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.6);
}
nav > ul li,
nav > ul li a {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.95rem;
}
nav > ul li a {
	padding-inline: 20px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav > ul li a:hover {
	color: #000000;
	transform: translateY(-2px);
}
nav > ul li a:focus {
	outline: none;
}
nav > ul li a.active {
	color: #000000;
	transform: translateY(-2px);
}
nav > ul.show-indicator::after {
	opacity: 1;
}
nav > ul li a:active {
	transform: translateY(-2px);
}
}

.centro-absoluto {
    height: auto;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    z-index: 10;
}

.borde-contenido {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    border: 3px solid #fff;
    width: 600px; 
    max-width: 90%; 
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    z-index: 20; 
    margin-top: 70px;
}

.borde-contenido h1 {
    color: #fff; 
    font-size: 2em;
    margin-bottom: 10px;
}

.table {
  margin: 20px auto 10px auto; 
  width: 90%;
  max-width: 1000px;
  z-index: 50; 
  position: relative; 
  background-color: #000000; 
  color: #ffffff; 
  border: 1px solid white;
  border-collapse: collapse;
}

.table th {
  background-color: #1a1a1a; 
  padding: 10px;
  color: #ffffff; 
  font-size: 0.8em;
}

.table td {
  padding: 8px;
  border: 1px solid #333333; 
  font-size: 0.8em;
}

.table td a { 
  color: #add8e6 !important; 
  text-decoration: none; 
  cursor: pointer; 
}

.table td a:hover {
  color: #ffffff !important; 
  text-decoration: underline; 
}