body {
    font-family: "Tox", sans-serif;
}

h1 {
    color: #2d633b;
}

.card img {
    height: 200px;
    object-fit: cover;
}

header img {
    max-width: 50%; /* Ajusta el tamaño según necesites */
    height: auto;
}

@font-face {
    font-family: "Tox";
    src: url("fonts/EB.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Estilos para la galería de imágenes */
.gallery-container {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: #2d633b;
}

.gallery-title {
    color: #2d633b;
    font-weight: bold;
    margin-bottom: 15px;
}

.gallery-description {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}
