iframe{
    width: 100%; 
    height: 100%;
    margin: 30px;
    min-width: 720px;
    min-height:432px
}

.videoContainer{
    
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-content:space-evenly;
    gap: 30px;
    justify-items: center;
    margin-bottom: 50px;
}


.videosTablet{
    display: none;
}

.video1{
    width: auto;
    /* height: 100%;
    margin-left: 20px; */
}

.video2{
    /* width: 100%;
    margin-left: 20px; */
}
.video3{
    /* width: 100%;
    margin-right: 20px; */
}

.videosProjetos{
    width: 100%;
    margin-top: 6rem;
    margin-bottom: 6rem;
    display: grid;
    place-items: center;
}

.videosGames{
    width: 100vw;
    display: grid;
    place-items: center;
    margin-bottom: 4rem;
    margin-top: 6rem;
}




@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .videosTablet{
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: center;
        width: 100vw;
    }

    .videoContainer{
        display: none;
    }
}

@media only screen and (max-width: 600px) {

    .videoContainer{
        display: block;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        width: 100vw;
    }

    .video1{
        margin-bottom: 30px;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .video2{
        margin-bottom: 30px;
        margin-left: 0px;
        margin-right: 0px;
    }
}