@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic");

*{
    margin: 0;
    padding: 0;
}

body{
    background: #A599B5;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.content{
    background-color: white;
    padding: 10rem;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: -10%;
}

.square, .circle {
    width: 100px; 
    height: 100px; 
    display: inline-block;
    float: right;
}

.circle {
    border-radius: 50%;
}

#blockRed {
    background-color: deeppink;
}

#blockYellow {
    background-color: forestgreen;
}

#blockWood {
    background: url("https://images.pexels.com/photos/129731/pexels-photo-129731.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
}

.container {
    background-color: blue;
    height: 400px;
    width: 400px;
    margin-left: 90px;
}

h1 {
    font-size: 50px;
    text-align: center;
    color: #051014;
    padding: 5.5rem;
}

