body,
body * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
  main{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 600px;
  margin: 10% calc(50% - 300px); 
}
div{
    width: 130px;
}
img{
    width: 100%;
    aspect-ratio: 1/1 ;
    filter: invert(1);
    align-items: top;
}
.discover{
    background-color: #51C3CD;
}
.design{
   background-color: #3A6EC1;
}
.develop{
   background-color: #F34D33;
}
.deploy{
    background-color: #919191;
}
h1{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    color:#f24c32;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}
p{
    font-size: 10px;
    margin-right: 10px;
    margin-top: 10px;
}
