:root{
    --primary: #707070;
    --secondary: #d41414;
}


.cover {
    position: absolute;
}

.motionContent {
    margin: auto;
    margin-top: 10vh;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 90%;
}

.contentBox {
    width: 100%;
    margin-top: 4vh;
    margin-bottom: 4rem;
}

.pageHeading {
    grid-column: 1/4;
    text-align: center;
    font-size: 3rem;
}

.spaceDivider {
    margin-bottom: 2rem;
}

.infoText {
    width: 60%;
    margin: auto;
    margin-bottom: 4rem;
}

.infoText p {
  text-align: center;
}

.videoContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    justify-content: center;
}

.vid {
    justify-self: center;
}

video {
    border-radius: 10px;
    background: rgb(0, 0, 0);
    box-shadow: 2px 2px 10px var(--primary);
}

.credit {
    font-size: 0.7rem;
    width: 90%;
    margin: auto;
    text-align: center;
}




@media screen and (max-width: 31.25rem) {

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

    .infoText {
        width: 80%;
    }
}




@media screen and (min-width: 31.25rem) and (max-width: 56.25rem) {


    .videoContainer {
        grid-template-columns: repeat(2, 1fr);
    }
}