body{
    background-color: #333333;
}

.cont{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.box{
    width: 300px;
    height: 300px;
    background-color: aliceblue;
    margin-inline: 30px;
    border-radius: 5px;
    text-align: center;
    transition: 1s;
}

.box:hover{
    transform: scale(1.1);
    transition: 1s;
}

.a{
    background-image: url(images/mov-sea-img.jpg);
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}

.b{
    background-image: url(images/Screenshot\ 2024-02-26\ 102027.png);
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}

.c{
    background-image: url(images/fla-img.png);
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}

.d{
    background-image: url(images/ace-g-img.png);
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}
.e{
    background-image: url(images/Hur-img.png);
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}
.f{
    background-image: url(images/artauctionImg.png);
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}

.cont a{
    text-decoration: none;
    color: aliceblue;
    font-size: 30px;
}

@media (max-width: 767px) {
    .home .cont{
        display: block;
        align-items: center;
        justify-content: center;
        float: right;
        margin-top: 70px;
    }
    .box {
        margin-top: 30px;
    }
}