@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;
    text-align: center;
    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%;
    height: auto;
    background-color: rgb(104, 192, 104);
    bottom: 0;
    left: 0;
    margin-bottom: 0px;
    margin-top: 0px;
}

p{
    margin: 15px 0;
    font-size:18px;
    font-weight: 300;
    text-align: justify;
}

footer{
    background-color: #023877;
    width: 100%;
    height: auto;
    display:flex;
    margin-bottom: 101 px;
}

.copy{
    background-color: #0074c7;
    display: flex;
    width: 100%;
    max-width: 1600px;
    height: 40px;
    color:#fff;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    margin: 0px auto;
}

.cursiva{
    font-style: italic;
}

h1{
    color:red;
    font-size: 22px;
}

h2{
    color:rgb(0, 0, 255);
    font-size: 30px;
}

h3{
    color: blue;
}

h4{
    color: blue;
}

/*BOTONES*/
.bienvenida{
    font-size: 25px;
    color: red;
    text-align: left;
    margin: 10px 0;
}

.container{
    width: 30%;
}

.container img{
    width: 100px;
    height: 100px;
}

.container p{
    color:red;
}

.container h2{
    color:blue;
    min-width: 100%;
}

.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;
    margin-left: 0;
    margin-right: 0;
}

.raya h3{
    display:flex;
    color: red;
    font-size: 22px;
    margin-left: 0px;
    margin-right: 0px;
    justify-content: end
    };

/*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;
}

.opciones{
    margin: 15px 0;
    font-size: 20px;
    color: blue;
    text-align: center;
}
/*estilos para tutoriales*/

.vid-yt{
    display: flex;
    flex-direction: row;
    flex-grow: 4;
    justify-content: space-evenly;
    margin: 10px;
    padding: 10px;
}

.frases{
    width: 100%;
    overflow: hidden;
    font-size: 30px;
    color: white;
    font-weight: bold;
    margin-top: 90px;
    padding: 10px;
}
.frases{
    animation: mover-izquierda-derecha 4s 1;
    animation-fill-mode: forwards;
}   
@keyframes mover-izquierda-derecha{
    0%{
        transform: translateX(-100%);
        opacity: 0;
    }
    100%{
        transform: translateX(35%);
        opacity: 1;
    }
}
