* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
}


body {
  background-image: linear-gradient(to right, #d3cce3, #e9e4f0);
  height: 100vh;
  width: 100vw;
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}

.heading {
  font-size: 40px;
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
  background-color: #e9e4f0;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: flex-start;
  padding: 5px 5%;
  
}

.container .main-video {
  background-color: aliceblue;
  border-radius: 5px;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

.container .main-video video {
  width: 100%;
}

.container .main-video .title {
  color: blueviolet;
  font-size: 23px;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 15px;
}

.container .video-list {
  background: white;
  border-radius: 5px;
  height: 520px;
  overflow-y: scroll;
}

.container .video-list::-webkit-scrollbar {
  width: 12px;
}

.container .video-list::-webkit-scrollbar-track {
  background: white;
  border-radius: 50px;
}

.container .video-list::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 50px;
}
.container .video-list .vid video {
  width: 100px;
  border-radius: 5px;
}

.container .video-list .vid {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f7f7f7;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
  border: 1px solid rgb(0, 0, 0, 0.1);
  cursor: pointer;
}

.container .video-list .vid:hover {
  background: #eee;
}

.container .video-list .vid.active {
  background: rgb(245, 217, 255);
}

.container .video-list .vid.active .title {
  color: #4d24ff;
  font-weight: bold;
}

.container .video-list .vid .title {
  color: #333;
  font-size: 18px;
}

@media (max-width: 991px) {
  .container {
    grid-template-columns: 1.5fr 1fr;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}

body.show-gif-background {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100vw;
  background-position: center;
  opacity: 0.78;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0; 
    width: 100%; 
    padding: 10px;
    background-color: #fff;
    border-top-left-radius: 10px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    display: flex; 
    justify-content: center; 
  }
  
footer img {
    width: 30px;
    height: auto;
    cursor: pointer;
}

.f-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
    ;
}
  
/*background-image: url("img-vids/kiyokhai-bg.png");
background-position: center;
background-size: contain;
background-repeat: no-repeat;