.verticalProfilePageOrentationDiv, .verticalProfilePageImgDiv{
    grid-row: span 2;
    width:80%;
}
.horizontalProfilePageOrentationDiv, .horizontalProfilePageImgDiv{
    width:100%;
}
.profileBody
{
    padding:8vw;
    padding-top:6vw;
}
.profileReel{
    width:100%;
    display: grid;
    row-gap:2.5vw;
    column-gap:5%;
    justify-items: center;
    /*justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;*/
}

.reelVideoButton, .reelVideoThumbnail{
    width:100%;
    border-style:none;
    cursor:pointer;
    color:black;
    padding:0;
}



@media screen and (min-width: 1001px) {

    .profileReel{
        grid-template-columns: 1fr 1fr;
    }
    .videoTitle{
        /*padding-top:.5%;
        padding-left:7%;*/
        font-size:1vw;
    }

}

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

    .profileReel{
        grid-template-columns: 1fr;
    }
    .videoTitle{
        /*padding-top:.5%;
        padding-left:7%;*/
        font-size: 22px;
    }

}
@media (orientation: landscape) {

    .profileReel{
        grid-template-columns: 1fr 1fr;
    }
}