.wrapper, #container {
    height: auto;
}

.video {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: black;
    box-sizing: border-box;
    padding: 20px;
    color: white;
}

.video h1 {
    width: 100%;
    line-height: 40px;
    margin: 20px 0;
}

.videoBlock {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
}
.videoBlock iframe {
    width: 44%;
    height: 60vh;
    margin: 20px;
    border: 6px solid rgba(255, 62, 0, 0.37);
    border-radius: 6px;
    transition: ease-in-out .6s;
}

.videoBlock iframe:hover {
    border: 6px solid rgba(255, 62, 0, 0.9);
    outline: 6px solid rgba(255, 62, 0, 0.4);
}


/* ------------------------------------------- @media */
@media screen and (min-width: 1200px) and (max-width: 1368px) {
    .videoBlock {
        padding: 20px 0;
    }

    .videoBlock iframe {
        width: 44%;
        height: 60vh;
    }
}

@media screen and (min-width: 901px) and (max-width: 1199px) {
    .videoBlock {
        padding: 20px 0;
    }

    .videoBlock iframe {
        width: 44%;
        height: 40vh;
    }
}

@media screen and (min-width: 760px) and (max-width: 900px) {
    .wrapper {
        background-color: black;
        display: flex;
        margin-top: 0;
    }

    .video {
        margin-bottom: 30px;
        margin-top: 0;
    }

    .video h1 {
        text-align: center;
    }

    .videoBlock {
        padding: 0;
        justify-content: center;
    }

    .videoBlock iframe {
        margin: 20px;
        border: 6px solid rgba(255, 62, 0, 0.37);
        border-radius: 6px;
        transition: ease-in-out .6s;
        width: 82%;
        height: 55vh;
    }
}

@media screen and (min-width: 560px) and (max-width: 759px) {
    .wrapper {
        background-color: black;
        display: flex;
        margin-top: 0;
    }

    .video {
        margin-bottom: 30px;
        margin-top: 0;
    }

    .video h1 {
        text-align: center;
    }

    .videoBlock {
        padding: 0;
        justify-content: center;
    }

    .videoBlock iframe {
        margin: 20px;
        border: 6px solid rgba(255, 62, 0, 0.37);
        border-radius: 6px;
        transition: ease-in-out .6s;
        width: 100%;
        height: 55vh;
    }
}

@media screen and (min-width: 481px) and (max-width: 559px) {
    .wrapper {
        background-color: black;
        display: flex;
        margin-top: 20px;
    }

    .video {
        margin-bottom: 30px;
        margin-top: 70px;
    }

    .video h1 {
        text-align: center;
    }

    .videoBlock {
        padding: 0;
        justify-content: center;
    }

    .videoBlock iframe {
        margin: 20px;
        border: 6px solid rgba(255, 62, 0, 0.37);
        border-radius: 6px;
        transition: ease-in-out .6s;
        width: 100%;
        height: 34vh;
    }
}

@media screen and (min-width: 370px) and (max-width: 480px) {
    .wrapper {
        background-color: black;
    }

    .video {
        margin-bottom: 30px;
        margin-top: 70px;
    }

    .video h1 {
        text-align: center;
    }

    .videoBlock {
        padding: 0;
        justify-content: center;
    }

    .videoBlock iframe {
        margin: 20px;
        border: 6px solid rgba(255, 62, 0, 0.37);
        border-radius: 6px;
        transition: ease-in-out .6s;
        width: 100%;
        height: 30vh;
    }
}

@media screen and (min-width: 320px) and (max-width: 369px) {
    .wrapper {
        background-color: black;
    }

    .video {
        margin-bottom: 30px;
    }

    .video h1 {
        text-align: center;
    }

    .videoBlock {
        padding: 0;
        justify-content: center;
    }

    .videoBlock iframe {
        margin: 20px;
        border: 6px solid rgba(255, 62, 0, 0.37);
        border-radius: 6px;
        transition: ease-in-out .6s;
        width: 100%;
        height: 30vh;
    }
}