<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

footer {
    background-color: #29242452;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    position: relative;
    bottom: 0;
    left:0;
    width: 100%;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
   }



body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

    
.button {
    position: fixed; 
    top: 20px; /* Cambiado de bottom a top */
    right: 20px; 
    z-index: 9999;
    background-color: #34a11250;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: "Roboto", sans-serif; /* Agregar la misma fuente que se usa en el enlace "VER SITIO" */
  }
  a.ver-sitio {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #fff;
    padding: 0.2em 1em; 
    background-color: #39d3d377; 
    border-radius: 5px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0); 
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease; 
  }
  
  a.ver-sitio:hover {
    background-color: #291c52;
    transform: scale(1.05); 
  }

.button:hover {
    background-color: #bba9ff;
    color: rgb(0, 0, 0);
}

.card {
    position: relative;
    width: 300px;
    height: 350px;
    margin: 20px;
}

.card .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}

.card .front {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}

.card .front img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .front h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #fff;
    background: rgba(0,0,0,.4);
    text-align: center;
}

.card .back {
    transform: perspective(600px) rotateY(180deg);
    background: rgba(51, 47, 42, 0.747);
    padding: 15px;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 5px 10px #000;
}

.card .back .link {
    border-top: solid 1px #f3f3f3;
    height: 50px;
    line-height: 50px;
}

.card .back .link a {
    color: #f3f3f3;
}

.card .back h3 {
    font-size: 30px;
    margin-top: 20px;
    letter-spacing: 2px;
}

.card .back p {
    letter-spacing: 1px;
} 

.card:hover .front {
    transform: perspective(600px) rotateY(180deg);
}

.card:hover .back {
    transform: perspective(600px) rotateY(360deg);
}



.details {
    text-align: left;
    margin-bottom: 10px; 
}

.details p:first-child {
    text-align: center;
    margin-bottom: 10px; 
}

.details p:not(:first-child) {
    margin-left: 10px; 
}
</pre></body></html>