body {
    font-size: 24px;
    font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}
.baner {
      
    display: block;
    margin-left: 40%;
    margin-right: auto;
    width: 50%;

}

.art {
    width: auto;
    margin: auto;
    column-count: 2;
    column-gap: 20px;
    padding: 20px;
    
}

.bloque {
    display: inline-block;
    padding: 30px;
    max-width: 50%;
    
    
}


.dropbtn {
background-color: #04AA6D;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;

}

.dropbtn:hover, .dropbtn:focus {
background-color: #3e8e41;
}

#myInput {
box-sizing: border-box;
background-image: url('searchicon.png');
background-position: 14px 12px;
background-repeat: no-repeat;
font-size: 16px;
padding: 14px 20px 12px 45px;
border: none;
border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
position: relative;
display: inline-block;

}

.dropdown-content {
display: none;
position: relative;
background-color: #f6f6f6;
min-width: 230px;
overflow: auto;
border: 1px solid #ddd;
z-index: 1;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}


div.gallery {
margin: 3px;
border: 1px solid #ccc;
text-align: center;
}

div.gallery:hover {
border: 1px solid #777;
}

div.gallery img {

width: 200px;

}

div.ctxt {
padding: 30px;
text-align: center;

}

.column {
column-count: 4;
padding: 15px;
margin: 5px;

}

.footer {
text-align: center;
padding: 50px;
font-size: 18px;
background-color: #FFF4A3;
}

#more {
    display: none;
    
}

.share-container {
    position: relative;
    display: inline-block;
}

.share-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: #45a049;
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    margin-bottom: 10px;
}

.share-dropdown.active {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 8px;
    border-radius: 50%;
}

.social-icon:hover {
    transform: scale(1.1);
}

.facebook { color: #3b5998; }
.twitter { color: #1da1f2; }
.whatsapp {color: #25D366;}
.telegram {color: #0088CC;}
.linkedin { color: #0077b5; }
.link { color: #4CAF50; }

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}