.vidYT {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.vido {
    width: 100%;
    max-width: 560px;
    margin: 10px;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.vido iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .vidYT {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .vido {
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .vidYT {
        flex-direction: column;
        align-items: center;
    }
}

.newWatch{
    margin-bottom: 50px;
}