body {
    font-family: Arial, sans-serif;
    background-color: #292630;
    background-image: url('images/veigar.gif'), url('images/totodile2.gif');
    background-repeat: no-repeat, no-repeat;
    background-size: 300px, 250px;
    background-position: left bottom, right bottom;
    background-attachment: fixed;
    color: #e6f1ff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(42, 40, 46, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    color: #64ffda;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background-color: rgba(27, 50, 82, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff3e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.app-card h2 {
    margin-top: 0;
    text-align: center;
    color: #f8bc83;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.app-card p {
    margin-bottom: 0;
    opacity: 0.8;
}

.jellyfin {
    background-color: rgba(167, 34, 11, 0.8);
}

.nextcloud {
    background-color: rgba(70, 173, 241, 0.8);
}

.navidrome {
    background-color: rgba(10, 109, 10, 0.8);
}

@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
}
/*.mosca-image {
    position: fixed;
    top: 60%;
    right: 80px;
    transform: translateY(-50%);
    max-height: 100px;  /* Ajusta este valor según el tamaño que desees para la imagen */
 /*   z-index: 200;  /* Asegura que la imagen esté por encima de otros elementos */
/*}*/

.mosca-image {
    position: fixed;
    max-height: 100px;
    z-index: 200;
    transition: all 0.5s ease;
}
