body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('fondi.png') no-repeat center center fixed;
    background-size: cover;
    color:  black;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;                    
    height: 60px;
    
    background-color: rgba(10, 183, 214, 0.9); 
    display: flex;
    justify-content: center;         
    align-items: center;
    
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;                   
}


.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.navbar a:hover {
    background-color: #088ca4;
    border-radius: 5px;
}

.centrar-contenido {
    margin-top: 80px; /* para que no se tape con la barra */
    display: flex;
    justify-content: center; /* centrar horizontal */
    align-items: center;     /* centrar vertical si hay espacio */
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.contenido-inicio {
    max-width: 800px; /* para que no se vea todo ancho */
}
.tabla-33 {
    margin: 20px auto;
    border-collapse: collapse;
}

.tabla-33 td {
    width: 150px;      /* tamaño uniforme */
    height: 150px;     /* tamaño uniforme */
    text-align: center;
    vertical-align: middle;
    border: none;
    background: rgba(255, 255, 255, 0.8);
}

/* Imágenes de las esquinas */
.img-esquina img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene proporción sin deformarse */
    border-radius: 10px;
}