.fuentes {
    font-family: "Roboto", sans-serif !important;
    font-weight: 300;
    font-style: normal;
}

.fondo {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15)), url('Images/imagenFondo.jpg');
    background-repeat: repeat;
}

h1 {
    size: 30px;
    color: black;
    margin-top: 5px;
    text-align: center;
}

h3 {
    size: 20px;
    text-align: center;
}

p {
    size: 10px;
    text-align: center;
    font-weight: bold;
}

table {
    width: 60%;
    display: grid;
    place-items: center;
    margin: auto;
}

img {
    width: 150px;
    height: 150px;
}

.fondoNegro {
    background-color: rgba(0, 0, 0, 0.50);
    border-radius: 15px;
}

.fondoVioleta {
    background-color: rgba(164, 126, 246, 0.5);
    border-radius: 15px;
}

.fondoVioleta08 {
    background-color: rgba(189, 161, 250, 0.8);
    border-radius: 15px;
}

.fondoBlanco {
    background-color: rgba(250, 250, 250, 0.7);
}

.btnComentario {
    background-color: rgb(164, 126, 246) !important;
}

.btnComentario:hover {
    background-color: #7f4af1 !important;
    border-color: #7f4af1 !important;
}

.hoverButton:hover {
    background-color: rgba(189, 161, 250, 0.9);
    border-radius: 5px;
}

.bordes {
    border-radius: 5px !important;
}

.bordesTop {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.bordesBot {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.pageFooter {
    border-top: 3px solid #888;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(250, 250, 250, 0.7);
}

.cajaComentario {
    background-color: rgba(0, 0, 0, 0.50);
}


.linksFooter {
    font-weight: bold;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: medium;
    color: black;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.titulo-nombre {
    font-size: 60px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-color: rgb(164, 126, 246);
    border-style: double;
    animation: fadeIn 1s ease-in-out;
    color: #fbfbfb;
    transition: color 0.5s ease-in-out, border 0.5s ease-in-out;
}

.titulo-nombre:hover {
    color: #a47ef6;
    border-color: #fbfbfb;
}

.subtitulos {
    transition: color 0.5s ease-in-out;
}

.subtitulos:hover {
    transition: color 0.5s ease-in-out;
    color: #a47ef6;
    border-color: #fbfbfb;
}

.bordesCard {
    border-color: #a47ef6 !important;
    border-width: 2px !important;
}

.carousel-container {
    max-width: 600px;
    margin: auto;
}

.carousel-inner {
    height: 500px;
    margin: auto;
    display: flex;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.idImagenBotonCopiar {
    transition: opacity 0.5s ease;
    opacity: 1;
}

.idImagenBotonCopiar.oculto {
    transition: opacity 1.5s ease;
    opacity: 0.1;
}

.archivo {
    cursor: default;
    background-color: rgba(189, 161, 250, 100);
}

.archivo:hover {
    background-color: rgba(189, 161, 250, 0.8);
    border-radius: 5px;
}

.cajaTextoClass {
    font-family: Arial, Helvetica, sans-serif;
    width: 60%;
    min-width: 450px;
    margin: auto;
    padding: 1% 2% 1% 2%;
    border-color: rgb(178, 151, 237);
    border-style: double;
    color: #fbfbfb;

    div {
        padding: 4px;
        text-align: center;
        justify-content: center;
    }
}