@import url("menu.css");
@import url("footer.css");
@import url("especial.css");

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
}

header{
    width: 100%;
    position: sticky;
    position: -webkit-sticky;
    top: -100px;
    height:auto;
    background:#ff0;
}

main{
    width: 100%;
    max-width: 1200px;
    display:flex;
    flex-flow: wrap row;
    background: #f0f0f0;
    padding:40px 0px;
    margin: 0 auto;
}

section{
    width: 100%;
    margin: 10px auto;
    padding: 40px;
    background-color: rgba(200, 0, 0, 0.3);
    display:flex;
}

article{
    width: 100%;
    height: auto;
    background-color: #fff;
    margin: 10px;
    padding: 10px;

}

.repro{
    position:fixed;
    width: 100%;
    background-color: black;
    bottom: 0;
    left: 0;
    margin-bottom: -10px;
}

p{
    margin: 15px 0;
    font-size:18px;
    font-weight: 300;
}

footer{
    background-color: #023877;
    width: 100%;
    height: 160px;
    display:flex;
}

.copy{
    background-color: #0074c7;
    width: 100%;
    max-width: 1200px;
    height: 60px;
    color:#fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding-top: 18px;
    margin: 0 auto;
}

.cursiva{
    font-style: italic;
}

h1{
    color:red;
    font-size: 22px;
}

h3{
    color: blue;
}

h4{
    color: blue;
}

/*BOTONES*/

.container{
    width:100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container img{
    padding-top: 15px;
}

.container p{
    color:red;
}

.container h2{
    color:blue;
}

.btn{
    padding: 20px 50px;
    font-size: 1.2rem;
    margin: 32px;
}

.btn-2{
    background: #039be5;
    color:whitesmoke;
    transition: transform 0.3 ease;
}

.btn-2::after, .btn-2::before{
    content: "";
    opacity: 0.3;
    background: #039be5;
    width: 100%;
    height: 100%;
    left:0;
    bottom: 0;
    z-index: -100;
    transition: transform 0.3 ease;
}

.btn-2:hover{
    transform:translate(-12px, -12px);
    background: pink;
    color: red;
    box-shadow: 10px 5px 5px lightblue;
}

.btn-2:hover::after{
    transform:translate(6px, 6px);
}

.btn-2:hover::before{
    transform: translate(12px, 12px);
}

.btn-1{
    color: red;
}

.btn-1::after, .btn-1::before{
    border: 3px solid #039be5;
    content: "";
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    left: 0;
    bottom: 0;
    z-index: -100;
    transition: transform 0.3s ease;
}

.btn-1:hover::after{
    transform: translate(-5px, -5px);
}

.btn-1:hover::before{
    transform: translate(5px, 5px);
}

hr{
    border: 2px solid red;

}

/*estilos para portafolio*/

.categorias{
    display:flex ;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 10px;
    padding: 10px 50px;

}

.general{
    margin: 15px 0;
}

.radios{
    margin: 15px 0;
}

.xat{
    margin: 15px 0;
}

/*estilos para tutoriales*/

.vid-yt{
    display: flex;
    flex-direction: row;
    flex-grow: 4;
    justify-content: space-evenly;
    margin: 10px;
    padding: 20px;
}


