/* ESTILOS GENERALES */
body {
    background-color: lightblue;
    margin: 0;
    padding: 20px;
}

/* H1 y H2 */
h1, h2 {
    color: green;
    margin: 0;
}

/* H3 */
h3 {
    color: white;
    margin: 0;
}

/* Enlaces dentro de párrafos */
p a {
    font-size: 20px;
    color: magenta;
}

/* Cajas flotantes generales */
.caja-flotante {
    height: 200px;
    width: 360px;
    background-color: orange;
    margin: 20px 10px;
    padding: 30px;
    text-align: center;
    border: 10px solid blue;
    float: left;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height:50px
}

/* Clase cabeza */
.cabeza {
    background-color: gray;
    text-align: center;
    clear: both;
    padding: 5px;
    margin: 0;
}

.caja4 {
    background-color: #1FFBFF;
    height: 400px;
    width: 360px;
    float: right;
    border: 10px solid blue;
    padding: 30px;
    margin: 20px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    clear: right;
}


.caja5 {
    background-color:LightSalmon;
    height: 400px;
    width: 360px;
    float: right;
    border: 10px solid blue;
    padding: 30px;
    margin: 20px 10px;
    box-sizing: border-box;
    text-align: center;
}

.caja5 p {
    line-height: 20px;
    margin: 0;
}