/* *es para estilo a toda la pagina  */
*{
    padding: 0;
    margin: 0;
    text-decoration: none; /* eliminamos todos los subrrallados  */
    list-style: none; /* quitar puntos a las listas  */
    box-sizing: border-box; /* para que los elementos no se slgan  */
}


body{
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    min-height: 100%;

}
/* estilo nav */
header{
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999px;
    border: darkorange 1px solid;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
header header  nav{
    background-color: whitesmoke; /* color de fondo al nav */
    width: 100%; /* ancho al nav */
    height: 80px; /* alto al nav */
    
}

/* estilo a la clase enlace */
.enlace{
    position: absolute; /* posicion que se puede modificar */
    margin-top: 0PX;
}

/* estilo a la clase logo */
.logo{
    height: 80px;
}

header nav ul{
    float: right; /* Movemos el listado */
    margin-right: 20px;
}

header nav ul li{
    display: inline-block; /* ponrr los elementos en linea */
    line-height: 80px; /* ponemos la altura de la linea */
    margin: 0 5px;
}

header nav ul li a{
    color: darkorange;
    font-size: 14px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
header A:hover{
    background-color: darkorange;
    transition: .5s;
    color: white;
    border: darkorange 1px solid;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
header .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 20px;
    margin-top: 20px;
    cursor: pointer;
    display: none;
}
header #check{
    display: none;
}
main{
    text-align: center; 
    margin-top: 100px;
    margin-bottom: 100px;
}
main label{
    color: darkorange;
    font-size: 25px;
    width: 50px;
   
}
.videoturorial{
    margin-top: 20px;
    margin-bottom: 20px;
    
}
.contenido-principal{

    width: 100%;
    height: auto;
    margin: auto;
    text-align: center;
    
}
article{
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 49px;
    margin-left: 20px;
    padding: 15px 15px;
    border: darkorange 1px solid;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 600PX;
}


footer{
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999px;
    height: 50px;
    text-align: center;
    margin-top: auto;
    background-color: white;
    border: darkorange 1px solid;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

}
footer p{
    font-size: 8px;
}
footer nav ul li{
    display: inline-block;
    margin: 2px 2px;
    margin-top: 3px;

}

/* movil */
@media (max-width: 1000px) {
    header{
        height: 100px;
     
    }
    header .enlace{
        padding-left: 20px;
    }
    header .checkbtn{
        display: block;
    }
    header ul{
        position: fixed;
        width: 100%;
        height: 100uvh;
        background: whitesmoke;
        top: 100px;
        left: 100%;
        text-align: center;
        transition: all .5s;

    }
    header nav ul li{
        display: block;
        margin: 30px 0px;
        line-height: 30px;

    }
    header nav ul li a {
        font-size: 20px;
    }
    header a:hover{
        background: darkorange;
        color: black;

    }
    header #check:checked ~ ul{
        left: 0;
	height: 75%;
        overflow-x: auto;
    }
    .videoturorial{
        height: 315px;
        width: 300px;
    }
    article{
        width: 350px;
    }
    main{
        margin-top: 120px;
    }

}
