*{
    box-sizing: border-box;
}

body{    
    background: url("../img/borde_raspberry_pi.png") left repeat-y , url("../img/borde_raspberry_pi.png") right repeat-y;
    background-size: 3%;
    background-color: pink;
    width: 90%;
    margin: 0 auto;
}

h1{
    text-align: center;
    color: green;
    letter-spacing: 10px;
    text-shadow: 5px -5px 6px yellowgreen;
}

.caja1{
    text-align: justify;
}
.menu{
    background-color: white;
    width: 70%;
    margin: 5px auto;
    border-radius: 50px;
}
ul{
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    color: blue;
}

.caja2{
    border: 5px solid palevioletred;
    margin-top: 30px;
}
h2{
    background-color: palevioletred;
    width: 100%;
    color: white;
    margin-top: 0;

}
.flexible{
    display: flex;
    flex-wrap: nowrap;
    padding: 0 20px;
}
img{
    padding: 10px;
    border: 3px solid white;
    transition: 3s;
}
.texto{
    padding: 10px 20px 0 20px;
    text-align: justify;
    font-size: 1.5em
}
p{
    text-indent: 50px;
}
p:last-of-type{
    padding: 20px;
}
.texto > p:last-of-type{
    font-size: 3em;
    color: palevioletred;
    text-indent: 0px;
}
img[alt="mag"]:hover{
    filter: sepia() drop-shadow(5px 5px 5px red);
    border-radius: 30px;
    transition: 3s;
    transform: rotateZ(180deg);
}
img[alt="custom"]:active{
    filter: grayscale(50%);
    border-radius: 50px;
    border: 5px double green;
    transition: 3s;
    transform: rotateX(180deg);
    cursor: crosshair;
}
img[alt="wire"]:hover{
    filter: saturate() drop-shadow(5px 5px 5px purple);
    border-radius: 30px;
    transition: 3s;
    transform: rotateY(180deg);
}
h1:hover{
    font-size: 3em;
    letter-spacing: 40px;
    color: crimson;
    text-shadow: 5px 5px 5px white;
    transition: 3s;
}