body {
    margin: 0;
    font-family: 'Segoe UI';  
}

.help-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: max-content;
    background-color: #607D8B;
    /* background-color: #BDBDBD; */
}

.video-group {
    display: flex;
}

.video {
    display: flex;
    flex-direction: column;
}

.video-spacer {
    content: "";
    width: 2rem;
}

.video-heading {
    text-align: center;
    font-size: larger;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


.help-modal {
    z-index: 1;
    background-color: #CFD8DC;
    padding: 1rem 3rem 1rem 3rem;
    margin: 2rem 1rem 3rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 5px #212121;
    transition: box-shadow ease-in-out 300ms;
}

.help-modal:hover {
    box-shadow: 1px 1px 10px black;
}

.help-modal-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-modal-heading h1 {
    font-weight: 500;
    border-bottom: 1px solid black;
    padding-bottom: 1rem;
}

.heading-spacer {
    content: '';
    height: 3rem;
}

@media only screen and (max-width: 1280px) {
    .video-group {
        flex-direction: column;
    }
    .video-spacer {
        width: 0;
    }
}

@media only screen and (max-width: 670px) {
    iframe {
        width: inherit;
        height: auto;
    }

    .help-modal {
        padding: 0.5rem;
    }
}