@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@200;400;600&display=swap');
@import url(nav.css);

:root{
    --black: #000;
    --light-grey: #333;
    --dark-grey: #111;
    --lighter-grey: #666;
    --red: #c82113;
    --dark-red: #94180e;
    --light-blue: #1085df;
    --dark-blue: #0e5a94;
    --wine-red: #722F37;
    --maroon-red: #800000;
    --myrtle: #21421E;
}

body {
    position: relative;
    background-color: var(--light-grey);
}

/* MAIN CONTAINER */
.container-main {
    border-style: solid;
    border-color: black;
    width: 100%;
    max-width: 950px;
    margin: auto;
    background-color: var(--lighter-grey);
}

/* MAIN HEADER */
.header-main {
    position: relative;
}

.header-main img {
    display: flex;
    width: 100%;
    max-height: 450px;
}

.header-main hgroup {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header-main hgroup img {
    width: 30%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.main-content {
    padding-top: 1rem;
}

.edited-videos {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    aspect-ratio: 4 / 3;
}

.video1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.unedited-videos {
    display: flex;
    justify-content: space-around;
    gap: 50;
}

.section-one h1 {
    display: flex;
    justify-content: center;
    font-size: xx-large;
    color: white;
}