body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
section{
    display: flex;
}
.botones {
    text-align: left;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}
button:hover{
    background: #ccc;
}
.quedarse_verde{
    background: #999;
    /*color:#f00;*/
    font-weight: 600;
}
.resultado {
    display: flex;
    text-align: center;
    width: 45%;
    left: 52%;
    top:75%;
    position: fixed;
    border: 2px solid black;
    height: 120px;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    color: #0f0;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.buscar{
    width: 45%;
    left: 52%;
    top:30%;
    position: fixed;
}
input{
    width: 100%;
    height: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 20px;
}
#resultado{
    font-size: 40px;
}
.hero {
    position: relative;
    width: 100%;
    height: auto; 
    background: url('../img/Flag_of_Venezuela.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Contenido dentro del HERO */
.contenedor-hero{
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}
.contenedor-elementos{
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}
@supports (-webkit-touch-callout: none){
    .hero{
        background-attachment: scroll;
    }
}
/*@media (max-width: 400px) {
    #resultado{
        font-size: 30px;
    }
}*/
@media (max-width: 500px) {
    h1, h2{
        font-size: 1.5rem;
    }
    .contenedor-elementos{
        width: 100%;
        padding: 0;
    }
    .resultado{
        width: 40%;
        height: 150px;
        top: 70%;
    }
    #resultado{
        font-size: 20px;
    }
    input{
        width: 80%;
        font-size:15px;
    }
}