/* style.css */
.square {
height: 50px;
width: 50px;
background-color: #555;
}
.box {
height: 100px;
width: 250px;
margin: 0 10px; /* Add 10px margin to create space between the boxes */
display: inline-block; /* Display the boxes in one line */
}
.box.left {
background-color: #00008B;
}
.box.center {
background-color: #FF7F50;
}
.box.right {
background-color: #FFA500;
}