/* html body { 
  margin: 0;
} */

/* button { 
  display: none;
  position: absolute;
  background: none;
  z-index: 10;
  border: none;
  width: 125px;
  top: 47vh;
  left: 50vw;
  transform: translate(-50%, -50%);
}
 */

/* button.visible { 
  display: flex;
  filter: drop-shadow(6px 6px 10px #0c04305e);
}
*/

html,
body {
  height: 96.5%;
  background-color: rgb(250, 250, 250);
}

/* body { 
  margin: 20px;
  padding: 0px;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.15px;
  text-decoration: none;
}
*/

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  color: #968661;
  text-decoration: none;
}

.second-a ul li:first-child a {
  color: white;
}

/* ================== MEDIA QUERY ================= */
/* ===================== MOBIL ==================== */
/* ================== MEDIA QUERY ================= */

@media only screen and (max-width: 900px) {
  body {
  }

  video {
    position: relative;
    object-fit: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .flex-container {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .flex-item {
    background-color: none;
    width: 100%;
  }

  .sidebar {
    flex: 1;
  }

  .flex-item .sidebar {
    display: none;
  }

  .video-content {
    flex: 4;
  }

  .flex-item .video-content {
    width: 100%;
    background-color: goldenrod;
  }

  .first-a :not(:first-child) {
    display: none;
    background-color: red;
    padding-bottom: 0px;
  }

  .second-a {
  }
}

/* ================== MEDIA QUERY ================= */
/* ==================== TABLET ==================== */
/* ================== MEDIA QUERY ================= */

@media only screen and (min-width: 900px) {
  html,
  body {
    margin-right: 1%;
    height: 97%;
  }

  video {
    position: relative;
    object-fit: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .flex-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    background-color: none;
  }

  .flex-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-basis: 50%;
  }

  .sidebar {
    flex: 2;
    background-color: none;
  }

  .video-content {
    flex: 2;
  }

  .flex-item .video-content {
    width: 100%;
    background-color: goldenrod;
  }

  .flex-item .sidebar {
    display: flex;
  }

  .first-a {
    flex: 1;
    padding-bottom: 0px;
  }

  .second-a {
    flex: 1;
    background-color: none;
  }

  .second-c {
    display: none;
  }
}

/* ================== MEDIA QUERY ================= */
/* ==================  Desktop 1 =================== */
/* ================== MEDIA QUERY ================= */

@media only screen and (min-width: 1200px) {
  .sidebar {
    flex: 2;
    background-color: none;
  }

  .video-content {
    flex: 3;
  }
}

@media only screen and (min-width: 1400px) {
  .sidebar {
    flex: 3;
    background-color: none;
  }

  .video-content {
    flex: 5;
  }
}
