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: auto;
    margin-right: auto;
    width: 50%;

}

.art {
    width: auto;
    margin: 200px;
    background-color: bisque;
    padding: 50px;
    
}

.container {
    column-count: 2;
    width: auto;
    padding: 30px;
}

.bloque {

    padding: 30px;

    
}


.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: 20px;
margin: 15px;

}

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

}

#more {
    display: none;
    
}




.audio-player {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-pause {
    background: #00b3b3;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.play-pause:hover {
    background: #00b3b3;
}

.play-icon, .pause-icon {
    font-size: 16px;
    color: white;
}

.pause-icon {
    display: none;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #00b3b3;
    width: 0%;
    border-radius: 5px;
    transition: width 0.1s linear;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.volume-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.volume-slider {
    width: 80px;
    cursor: pointer;
    accent-color: #00b3b3;
}