.first-section{
    display: grid;
    grid-template-columns: 728px 100px;
    grid-gap: 28px;
}

.image-web-3-desktop
img{
    width: 728px;
    height: 295px;
}

.news-container{
    display: grid;
    grid-template-columns: 300px 94%;
}

.news-tittle{
    font-size: 1.5rem;
    font-weight: 800;
    color: #00001a;
}

.new-article{
    display: flex;
    flex-direction: column;
    row-gap: 38px;
}

.new-article
p{
    color: #5d5f79;
}

.new-article
button{
    height: 47px;
    width: 182px;
    cursor: pointer;
    border: none;
    background-color: #00001a;
    color: white;
}

@media only screen and (max-width: 600px) {
    .first-section{
        display: grid;
        grid-template-columns: 800px;
    }

    .image-web-3-desktop
    img{
        height: 300px;
        width: 255px;
    }

    .news-container{
        display: flex;
        flex-direction: column;
    }

    .news-tittle{
        font-size: 1.5rem;
        font-weight: 800;
        color: #00001a;
    }

    .new-article
    p{
        font-size: 0.8rem;
    }

    .new-article
    button{
        background-color: #F35C55;
        width: 250px;
        margin-bottom: 63px;
        font-size: 1.5rem;
        height: 80px
    }
}
