
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:  "Archivo Black", sans-serif;
}

.contenedor {
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #ff9100;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

/* Header */
.logo_municipio>img{
    position: relative;
    top: 15px;
    width: 5%;
    display: block;
    margin: auto;
    z-index: 2;
}
#hero{
    min-height: 100vh;
    position: relative;
}


header .textos-header{
    display: flex;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 2;
}

.textos-header h1{
    font-size: 30px;
    color:#3a3939;
}

.textos-header h2{
    font-size: 15px;
    font-weight: 150;
    color:#3a3939;
}





video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}



@media screen and (max-width:500px){

    .textos-header h1{
        font-size: 20px;
    }

    .textos-header h2{
        font-size: 10px;
    }
}