body { 
    background-color: lightblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
}

h1, h2 {
    color: darkblue;
    font-family: serif;
    font-size: 50px;
}

a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

a:hover{ 
    color: blueviolet;
    border-bottom: 1px solid purple;
    border-top: 1px solid purple;
}

.container {
    width:1200px;
    padding: 30px;                  
    margin: 10px auto;                   /* this centers it horizontally*/
    display: flex;                  /*flexbox*/
    background-color: lightblue;
}

.item1 {
    background-color: plum;
    padding: 20px;
    margin-right:10px;
}

.item2 {
    background-color: lightpink;
    padding: 20px;
    margin: 10px;
}
