*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: 100vh;
    flex-wrap: wrap;
    padding: 100px;
    background: #3c4352;
}
.boxImage{
    width: calc(100% / 3 - 40px);
    height: 370px;
    object-fit: cover;
}
