body {
    background: radial-gradient(circle, rgba(1, 1, 53, 0.374), rgb(3, 33, 29));
    cursor: none;
    overflow: hidden;
}
html, body {
    height: 100%;
}
.scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
}
.barra {
    height:90px;
    width: 100%;
    background-color:rgba(141, 123, 232, 0.246) ;
    position: fixed;
    top: 0;
    left:0;
    justify-content: space-around;
    display: flex;
    border-bottom: 2px solid black;
    margin-left: 0;
    margin-right: 0;
    text-align: center;

}
.barra a {
    display:flex;
    justify-content: center;
    gap: 3px;
    font-family: "matcha";
}

.neutro {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border:none;
    outline: none;
}
.neutro:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    color: aqua;}

.circle{
    height: 20px;
    width: 20px;
    border-radius: 24px;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
}
.tabla {
    
    height: 700px;
    width: 900px;
    background-color: rgba(245, 245, 245, 0.1);
    border-radius: 50px;
    border: 2px transparent;
    border-color: black;
    text-align: center;
    margin: auto;
    animation: prueba1 4s infinite linear;
    box-shadow: 0 0 10px 5px rgba(0, 255, 255, 0.4);
}

.tabla h1 {
    font-family: "David";
    color: rgb(27, 26, 26);
    text-decoration: underline;
    border-bottom: 1px solid black;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.tabla table td.reglon1 {
    color: black;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    width: 80%;
}

.tabla table td.reglon2 {
    color: black;
    border-bottom: 1px solid black;
    align-items: center;
    justify-content: center;

}
.boton {
    background-color:rgba(141, 123, 232, 0.246) ;
    height: auto;
    width: auto;
    min-width: 100px;
    border-radius: 10px;
    border: 2px solid black;
    cursor: none;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    margin: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bot {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.cuadro2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start; 
    align-items: center;
}
.boton:hover {
    background-color:rgba(53, 21, 211, 0.246);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.boton:active {
    transform: translateY(0px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.boton.material-symbols-outlined {
    font-size: 50px;
}

.tabla table {
    height: 80%;
    width: 80%;
    border: black 1px solid;
    margin:auto;
    border-radius: 30px;
}

a {
    cursor: none;
    pointer-events:auto;
    text-decoration: none;
    color: azure;
}

.barra a {
padding: 50px;
}

.cuadro1 {
    border-right: 1px solid black;
}

iframe {
    height: 90%;
    width: 90%;
    cursor: none;
    pointer-events: auto;
    background-color: rgb(174, 151, 117);
    border: 2px solid black;
}

img {
    width: 80%;
    height: 80%;
    margin-top: 70px;
    border-radius: 20px;
    border: 3px solid transparent;
}


.tabla table tr.linom {
    color: blue;
}

.emergencia {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.emergencia:hover {
    transform: translateY(-5px);
    color: red;
}

.linom {
    font-family: "pinky";
    font-size: 45px;
    margin: 5px;
    padding-top: 10%;
}
@keyframes prueba1 {
    0% {
        border-color: rgba(117, 48, 142, 0.7);
    }
    25% {
        border-color: rgba(121, 36, 164, 0.9);
        box-shadow: 0 0 10px 5px rgba(164, 117, 165, 0.8);
    }
    50% {
        border-color: rgb(107, 68, 122);
        box-shadow: 0 0 20px 10px rgba(0, 255, 255, 1);
    }
    75% {
        border-color: rgba(121, 36, 164, 0.9);
        box-shadow: 0 0 10px 5px rgba(103, 34, 104, 0.8);
    }
    100% {
        border-color: rgba(117, 48, 142, 0.7);
        box-shadow: 0 0 10px 5px rgba(125, 45, 119, 0.4);
    }
}
