@charset "UTF-8";

body{
    background-color: silver;
}
h1{
    color: blue;
    font-style: italic;
    font-weight: bold;
    font-size: xx-large;
    text-align: center;
    text-decoration: underline;
    letter-spacing: 10px;
}
a.enlace{
    text-decoration: none;
    position:absolute;
    top: 80px;
}
h2{
    color: blue;
    text-align: left;
    position: absolute;
    right: 500px;
    bottom: 240px;
}
p{
    position:absolute;
    right: 100px;
    top: 400px;
    width: 1100px;
    background-color: aqua;
    color: maroon;
    letter-spacing: 2px;    
    font-weight: bold;
    word-spacing: 2px;
    font-size: 15px;
    text-align: justify;
    padding: 8px;
    border: dashed 3px;
}
span{
    color: blue;
}


div.elemento{
    width:21%;
    line-height:2rem;
}
div:nth-child(1){
    background-color: cyan;
    line-height:4rem;

}
div:nth-child(2){
    background-color: turquoise;
}
div:nth-child(3){
    background-color: aquamarine;
    font-size:1rem;
    line-height:1.2rem;
}
div:nth-child(4){
    background-color: skyblue;
}
div:nth-child(5){
    background-color: cornflowerblue;
}
div:nth-child(6){
    background-color: blue;
    line-height:5rem;
    font-size:3rem;
}
div:nth-child(7){
    background-color: navy;
    line-height:3rem;
}
div.Ejemplo{
    margin: 70px;
    text-align: center;
    width: 1000px;
    height: 200px;
    color: greenyellow;
    background-color: white;
    display:flex;
    flex-flow:row wrap;
    align-items:baseline;
    border: outset 10px;
}