
body {
    /* max-width: 1400px; */
    margin: 0;
    background: #12192b;
    color: #EAEAEA;
    /* padding: 2%; */
    font-family: "sahel", Sans-serif;
  }
  
  /* header {
    display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #fff;
      margin-bottom: 30px;
      height: 200px;
      padding: 20px 0;
  } */
  
  header {
    margin-bottom: 50px;
  }

  header h1 {
    margin-bottom: 20px;
    margin-top: 4px;
    color: #FFF;
    text-align: center;
    font-size: 42px;
  }
  
  .logo img {
    max-width: 450px;
  }
  .logo {
    margin-bottom: 20px;
  }

  .et_logo {
    position: absolute;
    left: 40%;
    top: 5px;
  }
  .et_logo img{
    max-width: 20vw;
    width: 300px;
  }
  
  .container {
    width: 1400px;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  .video-player {
    margin-right: 7%;
    position: sticky;
    top: 30px;
    width: 100%;
    height: 500px;
    background-color: black;
    max-width: 950px;
  }
  
  .video-grid {
    max-width: 417px;
    display: grid;
    justify-content: center;
    padding-right: 10px;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }
  
  /* *****************
  ********************
      MEDIA QUERIES
  ********************
  ****************** */
  
  @media only screen and (max-width: 768px) {
    header {
      margin-bottom: 0;
    }
    .video-grid {
      grid-template-columns: 1fr;
      display: block;
      margin: 0 auto;
    }
    .container {
      padding-top: 20px;
      flex-direction: column;
      max-width: 100%;
      margin: 0;
    }
    .video-player {
      position: sticky;
      height: 26vh;
      width: 100%;
      top: -1px;
      padding: 56px 0;
      background: linear-gradient(to bottom, #12192b 70%, transparent 101%);
    }
    .video-item {
      margin-left: auto;
      margin-right: auto;
      display: block;
      height: auto;
    }
    .video-item img {
      display: block;
      margin: 5px auto;
    }
    .logo img {
      max-width: 100%;
      margin-bottom: 50px;
    }
  }
  @media only screen and (min-width: 769px) {
    #player {
      height: 500px;
    }
    .container {
      flex-direction: row;
    }
  }