
.merriweather-titles {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    background-color: #ffffff;
    opacity: 1;
    background-image:  radial-gradient(#acb1ff 1.6px, transparent 1.6px), radial-gradient(#acb1ff 1.6px, #ffffff 1.6px);
    background-size: 64px 64px;
    background-position: 0 0,32px 32px;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.HIDDEN{
    display: none;
}

.header {
    width: 100%;
    height: 4.2rem;
    position: fixed;
    top: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding: 1rem;
    background-color: rgb(255, 255, 255);

    color: #878ddd;

    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 12px;

    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;

    z-index: 1000;
}

.foot {
    position: fixed;
    bottom: 0.3rem;
    right: 1rem;

    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #878ddd;

    z-index: 1000;
}

.card-contain{
    color: #878ddd;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: rgb(255, 255, 255);
    border-radius: 1rem;
}

.text_i{
    padding: 10px;
    border: 3px solid #878ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #878ddd;
    outline: none;
    margin: 0.5rem;
}

.text_i:focus{
    border-color: #5e49a8;
    box-shadow: 0 0 0 0.2rem rgba(38, 0, 255, 0.25);
}

.no-copiable {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;      /* IE 10 y Edge antiguo */
    user-select: none;          /* Estándar (Chrome, Firefox, Opera) */
    
    cursor: default;            /* Cambia el cursor de "texto" a "flecha" para dar la pista visual */
}

.boton_morado{
    background-color: #878ddd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.boton_morado:hover{
    background-color: #6a64a8;
}

.boton_morado:active{
    background-color: #5e49a8;
    transform: scale(0.9);
}


.card{
    width: 100%;
    height: 100%;

    border-radius: 1rem;
    border: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;

    color: white;

    cursor: pointer;
    transition: all 0.1s ease-in-out;

    padding: 1rem;
}

.card:hover {
    transform: scale(1.01);
}

.card:active {
    transform: scale(0.98);
}

.card-color-1{
    background-color: rgb(255, 56, 60);
}
.card-color-2{
    background-color: rgb(255, 141, 40);
}
.card-color-3{
    background-color: rgb(255, 204, 0);
}
.card-color-4{
    background-color: rgb(52, 199, 89);
}
.card-color-5{
    background-color: rgb(0, 200, 179);
}
.card-color-6{
    background-color: rgb(0, 136, 255);
}
.card-color-7{
    background-color: rgb(97, 85, 245);
}
.card-color-8{
    background-color: rgb(203, 48, 224);
}
.card-color-9{
    background-color: rgb(255, 45, 85);
}

.title-card{
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
}
.title-card2{
    font-size: 1rem;
    justify-content: center;
    align-items: center;
}