/**
 * grid.css contains all CSS properties,
 * that configure layout.
 * display, position, float...
 */

/**
 * Sidebar
 */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar-content {
    display: flex;
    flex-wrap: wrap;
}

.sidebar-social {
    display: flex;
    justify-content: space-evenly;
}

/**
 * All sections
 */
section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.schedule-items-container {
    display: flex;
    justify-content: center;
}

/**
 * Video section
 */
.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.video-container-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/**
 * Info section
 */
.info-section-form {
    display: flex;
    flex-direction: column;
}
