html {
    background-image: url('fondoMuro.jpg');
    background-size: cover;
    /* Hace que la imagen cubra todo el contenedor */
    background-position: center;
    /* Centra la imagen en el contenedor */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
}

body {
    background-color: #000000e0;
    display: flex;
    flex-direction: column;
    margin: unset;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

body#bodyError {
    background-color: #000000e0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

body main {
    padding: 2%;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /*background-color: white;*/
    margin: auto;
}

#bodyError main {
    height: unset;
}

img {
    width: 20%;
}

h1,
h2 {
    color: white;
    font-size: 200%;
}

#enlaces {
    display: flex;
    width: 64%;
    height: 33.33%;
    flex-direction: column;
    justify-content: space-evenly;
}

#bodyError div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body#bodyError main h1,
body#bodyError main h2 {
    animation: colorChange 1s infinite alternate;
}

@keyframes colorChange {
    0% {
        color: #e1009c;
        /* Color inicial */
    }

    100% {
        color: #00c1a8;
        /* Color final */
    }
}

a {
    font-size: 120%;
    width: 32%;
    color: #b9b9b9;
    text-decoration: none;
    transition: ease 0.5s;
}

main a::before {
    content: "\25b6";
    margin-right: 5px;
}

a:hover {
    color: #00e128;
}

footer {
    color: white;
    margin-bottom: 2%;
}

#footerCoockie {
    background-color: black;
    border: 1px solid white;
    color: white;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    width: 400px;
    font-size: 14px;
}

#footerCoockie h4 {
    margin: 0;
    padding: 0;
}

#footerCoockie a {
    font-size: 14px;
    text-decoration: none;
    color: yellow;
}

#footerCoockie input {
    background-color: yellow;
    /* Color de fondo */
    font-size: 14px;
    color: white;
    /* Color del texto */
    border: none;
    /* Sin borde */
    padding: 10px;
    /* Espaciado interno */
    text-align: center;
    /* Alineación del texto */
    text-decoration: none;
    /* Sin subrayado */
    font-size: 16px;
    /* Tamaño de la fuente */
    margin: auto;
    /* Márgenes */
    cursor: pointer;
    /* Cambiar cursor al pasar por encima */
    border-radius: 12px;
    /* Bordes redondeados */
    transition: background-color 0.3s;
    /* Transición de color de fondo */
}

#footerCoockie input:hover {
    background-color: rgba(255, 255, 0, 0.507);
}

p,
li {
    color: white;
}