* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
body {
    line-height: 1;
    background-color: darkgreen;
    margin-left: 100px;
}
h1 {
    font-size: 4em;
    color: coral;
    font-style: italic; 
    font-weight: bolder;
    text-align: center;
    text-decoration: underline;
}
container {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex: 1;
    
}
.rosie, .karen, .tiggy {
    margin: 30px;
}
footer {
   font-size: 2em;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 100px;
    text-align: center;
    color: rgb(40, 5, 236);
}