*{ 
	margin: 0;
box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body{ 
	font-family: sans-serif;
}

.contenedor{
   width: 100%;
    margin: auto;
}
.header{
   background-color: black;
   border-bottom: 1px solid skyblue ;
	position: relative;
	width: 100%;
}



.menu{
    list-style: none;
    padding: 0;margin: 0;  
}

.menu__link{
     cursor: pointer; display: block;
    padding: 15px;
    background-color: black;
    color: #fff ;
    height: 60px;
    border-bottom: 1px solid black ;
    font-size: 20px;
	  text-decoration: none;
}
.menu__link:hover{
    background:black ;
    color: #fff;
}
.muestrate{
    left: 0;
}
/**/

.parrafo__columna h1{
    font-size: 40px;
    padding: 20px;
}

.parrafo__columna p{
   text-align: justify
}


    .nav {
    position: static;
    width: auto;
  }
  .menu {
    display: flex;
  }
  .icon-menu {
    display: none;
  }
	.menu__link{
		border: none;
	}
}

@media(min-width:1200px){
   .contenedor{
        width: 1200px;
	}
}