body{
  background: orange;   
}
div{
    height: 200;
    border: 2px solid red;
    background:#ffc0c0;
    color: white;
    width: 98%;
    margin:inherit;
}
h2{
    font-style: italic;
    color:black;
    font-size: 25px;
     padding: 20px;
    border-radius: 25px;
}
a{
outline: none;
    text-decoration: none;
    display: inline-block;
    width: 19.5%;
    margin-right: 0.625%;
    text-align: center;
    line-height: 3;
    color: black;
}
a:link, a:visited, a:focus{
background: yellow;  
   
    margin: 5px;
}
 a:hover{
  background: red;   
}
 a: active{
  background:red;
     color: white;
}
.padre{
 background: yellow;
    height:  350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hijo{
 background: red;
    width:400px;
    height: 300px;
}
input{
    height: 40px;
    width:290px;
}


