:root{
    --blanco: whitesmoke;
    --negro:black;
    --fondo1: grey;
    --fondo2:grey;
    --sombra60: #00000060;
    --sombra85: #00000085;
    --fondotexto:rgba(63,106,138,0.21);
    --fondoimagenes:rgba(63,106,138,0.71);
}
* {
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}
body{
    max-width: 1600px;
    min-width: 340px;
    background: black;
    color:black;
    background-color: var(--blanco);
    font-size: 16px;
    font-family: "Oswald", serif;
}
/*parte del menu */
.navegador{
    width: 100%;
    margin: auto;
    font-size: 22px;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    height: 80px;
    padding: 20px 0;
    background-color: var(--fondo1);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all 100ms;
}
.navImagen img{
    width: 180px;
    margin-left: 30px;
}
.listaMenu{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    margin-right: 30px;
    list-style: none;
}
.listaMenu li a{
    text-decoration: none;
    color: var(--blanco);
    margin-left: 15px;
}
.botonMenu{
    display: none;
    margin-right: 30px;
}
.navmod{
    height: 70px;
    box-shadow: 5px 5px 10px 0px var(--sombra60);
    background: var(--fondo2);
}
.moviContent{
    margin-right: 150px;
}
/*esta es elñ mdetalle de la publicacion*/
.publicacion{
    color: black;
    position: relative;
    top: 110px;
}
.titulo {
    color: black;
    font-size: 25px;
    padding: 10px 0;
    text-align: center;
    padding-bottom: 5px;    
}

/*Imagen*/
.imagen {
    width: 70%;
    margin: auto;
    height: 400px;
    text-align: center;
    padding-bottom: 15px;    
}
.imagen img{
    width: 600px;
}
.imagen1 {
    width: 70%;
    margin: auto;
    height: 500px;
    text-align: center;
    padding-bottom: 15px;    
}
.imagen1 img{
    width: 600px;
}

/*Imagen*/
.imagenautor {
    width: 20%;
    margin: auto;
    height: 100px;
    text-align: center;
    padding-bottom: 5px;    
}

.articulo {
    width: 90%;
    margin: auto;
    text-align: justify;
    font-size: 18px;
}
.articulo h2{
    padding: 15px 0;
}
.articulo p{
    padding: 5px 0;
}
.articulo h3{
    padding: 15px 0 0 0;
}
.articulo ul{
    padding-left: 50px;
}
.articulo .firma{
    text-align: end;
    padding: 0 15px 0 0;
}
.titulocontacto {
    text-align: center;
    padding: 0 15px 0 0;
}
.datocontacto {
    display: flex;
    align-items: center;
    padding: 0 15px 0 0;
}
.imagencasos {
    width: 90%;
    margin: auto;
    height: 400px;
    text-align: center;
    padding-bottom: 15px;    
}

.imagencasos img{
    width: 700px;
}

/* boton final*/
.btn {
    cursor: pointer;
    display: inline-block;
    border: 1px solid white;
    font-weight: bold;
    padding: 10px 20px;
    background: #262626;
    color: white;
    border-radius: 5px;
    margin: 10px 0;
    position: relative;
    top: 110px;
    left:300px
}
.btn:hover{
    opacity: .7;
}
/*aca va el footer*/
.footer{
    background: var(--fondo1);
    color: var(--blanco);
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
    padding-bottom: 5px;
    position: relative;    
    top: 110px
}

@media screen and (max-width: 835px){
    /*aca la parte del menu*/
    .navMenu{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .botonMenu{
        display: flex;
    }
    .navMenu{
        height: 100%;
        background: var(--fondo2);
        position: fixed;
        top: 0;
        right: -280px;
        transition: all 300ms;
    }
    .moviNav{
        right: 0px;
    }
    .navMenu ul{
        flex-direction: column;
    }
    .navMenu ul li{
        margin: 20px 0px;
    }

}
@media screen and (max-width: 500px){
    /*aca la parte del banner*/

    .imagen img{
        width: 250px;
        height: 250px;
    }
    .navImagen img{
        width: 120px;
        margin-left: 10px;
    }
}
@media (max-width: 1250px){
    .imagenes1{
        display: none;
    }
}
