@media (orientation: landscape) {
    .instruction-container {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 2rem;
    }
    .instruction-video-container {
        width: 60%;
    }
    .instruction-video {
        width: 100%;
        border-radius: 0.4rem;
        box-shadow: 0 0 1rem 0.5rem var(--shadow-color);
        -webkit-box-shadow: 0 0 1rem 0.5rem var(--shadow-color);
        -moz-box-shadow: 0 0 1rem 0.5rem var(--shadow-color);
    }
    .instruction-info-container {
        width: 36%;
        /*display: flex;*/
        /*flex-direction: column;*/
        /*justify-content: space-between;*/
    }
    .instruction-info-header {
        margin-top: 0;
    }
}
@media (orientation: portrait) {
    .instruction-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        margin-top: 2rem;
    }
    .instruction-video-container {
        width: 100%;
    }
    .instruction-video {
        width: 100%;
        border-radius: 0.4rem;
        box-shadow: 0 0 1rem 0.5rem var(--shadow-color);
        -webkit-box-shadow: 0 0 1rem 0.5rem var(--shadow-color);
        -moz-box-shadow: 0 0 1rem 0.5rem var(--shadow-color);
    }
}
.instruction-button {
    font-size: var(--font-size-filters);
    color: var(--white);
    width: 12rem;
    margin-right: 1.5rem;
    padding: 0.5rem 0 0.5rem 0;
    text-align: center;
    border: none;
    border-radius: 0.4rem;
    background-color: var(--main-color);
    cursor: pointer;
    margin-top: 1rem;
}
.instruction-button:hover {
    background-color: var(--main-color-dark);
}
