@import url('https://fonts.googleapis.com/css2?family=Barriecito&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Permanent+Marker&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #f8f3f3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header h1 {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

header span {
    font-size: 2rem;
   
}

.intro h2 {

    text-align: center;
    margin: 50px 0;
}

.intro p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 50px;
    font-family: "Permanent Marker", cursive;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #111;
    border: 2px solid rgb(110, 2, 2);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 45%;
    min-width: 280px;
}

.link-item a {
    color: #fff;
    font-weight: bold;
  
}

.link-item p {
    margin-top: 10px;
    color: #bbb;
}

footer p {
    margin-top: 30px;
    font-size: 0.9rem;
}

footer a {
    color: #ff4c4c;
    text-decoration: none;
}

@media (max-width: 768px) {
    .link-item {
        width: 100%;
    }

    header h1, .intro h2 {
        font-size: 1.8rem;
    }
}


.link-item .hover:hover {
    cursor: pointer;
    transform: scale(1.1); /* Agrandar un poco la imagen */
    transition: transform 0.3s ease; /* Hacer la animación suave */
    filter: brightness(2.8) saturate(4.5); /* Aumentar brillo y saturación */
}

.link-item a:hover {
    color: #3498db; /* Cambiar el color del enlace al pasar el mouse */
    text-decoration: underline; /* Subrayar el enlace */
    transition: color 0.3s ease; /* Transición suave para el color */
}
