body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    padding: 100px 0;
    text-align: center;
}

section {
    border: 2px solid #666;
    padding: 50px;
    max-width: 800px;
    margin: 50px auto;
}

section img {
    display: block;
    max-width: 100%;
    width: 500px;
    margin: auto;
}

.container {
    width: 300px;
    margin: 120px auto;
    background-color: #dff5c9;
    min-height: 300px;
}

.container div {
    width:100px;
    height: 100px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: grid;
    place-content: center;
}

#box1 { 
    background-color: #840d0d;
    position: relative;
    top: -100px;
    left: -100px;
}

#box2 { 
    background-color: #271a71;
    position: relative;
    top: -200px;
    left: 100%;
}

#box3 { 
    background-color: #675707; 
    position: relative;
    top: 200px;
    left: -100px;
}

#box4 { 
    background-color: #e8052b;
    position: relative;
    top: 100px;
    left: 100%;
}