@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap");

:root {
 --body-font: "Manrope", sans-serif;
 --body-color: #b3b3b3;
 --body-bg-color: #f2f2f2;
 --theme-bg-color: #fafafa;
 --border-color: #efefef;
 --logo-color: #f13a2f;
 --main-color: #808080;
 --header-bg-color: #fff;
}

.dark-mode {
 --body-bg-color: #1e222b;
 --theme-bg-color: #212835;
 --border-color: #393f50;
 --header-bg-color: #323a4b;
 --main-color: #fefffd;
 --body-color: #dddee0;
}
* {
 outline: none;
 box-sizing: border-box;
}

img {
 max-width: 100%;
}

html {
 box-sizing: border-box;
 -webkit-font-smoothing: antialiased;
}

body {
 font-family: var(--body-font);
 font-size: 15px;
 color: var(--body-color);
 background-color: var(--body-bg-color);
 margin: 0;
 font-weight: 600;
 min-height: -webkit-fill-available;
}

.video-app {
 display: flex;
 flex-direction: column;
 max-width: 1400px;
 margin: 0 auto;
 overflow: hidden;
}
/*nav*/
nav{
  height: 4rem;
  width: 100vw;
  background-color: #131418;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  top: 0%;
  display: flex;
  position: fixed;
  z-index: 10;
  left: 0;
}

/*Styling logo*/

nav img {
	height: 4rem;
	width: 4rem;
}

/*Styling Links*/
.nav-links{
  display: flex;
  list-style: none; 
  width: 88vw;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}
.nav-links li a{
  text-decoration: none;
  margin: 0 0.7vw;
  color: white;
  font-weight: bolder;
}
.nav-links li a:hover {
  color: #61DAFB;
}
.nav-links li {
  position: relative;
}
.nav-links li a::before {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #61DAFB;
  position: absolute;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
  width: 80%;
}

/*Styling Buttons*/
.login-button{
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
  color: white;

}
.login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border:1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}
.join-button{
  color: #131418;
  background-color: #61DAFB;
  border: 1.5px solid #61DAFB;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}
.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border:1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div{
  width: 30px;
  height:3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}
.hamburger{
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px){
  nav{
      position: fixed;
      z-index: 3;
  }
  .hamburger{
      display:block;
      position: absolute;
      cursor: pointer;
      right: 5%;
      top: 50%;
      transform: translate(-5%, -50%);
      z-index: 2;
      transition: all 0.7s ease;
  }
  .nav-links{
      position: fixed;
      background: #131418;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(50px at 90% -20%);
      -webkit-clip-path: circle(50px at 90% -10%);
      transition: all 1s ease-out;
      pointer-events: none;
  }
  .nav-links.open{
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
      margin: 0;
  }
  .nav-links li{
      opacity: 0;
  }
  .nav-links li:nth-child(1){
      transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2){
      transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3){
      transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4){
      transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5){
      transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6){
      transition: all 0.5s ease 0.9s;
      margin: 0;
  }
  .nav-links li:nth-child(7){
      transition: all 0.5s ease 1s;
      margin: 0;
  }
  li.fade{
      opacity: 1;
  }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
  transition: all 0.7s ease;
  width:0;
}
.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px);
}
/*.header {
 height: 90px;
 width: 100%;
 border-bottom: 1px solid var(--border-color);
 display: flex;
 background-color: var(--header-bg-color);
 align-items: center;
 padding: 0 25px;
 color: var(--body-color);
 font-size: 15px;
}

.header-left {
 display: flex;
 align-items: center;
 svg {
  width: 22px;
  margin-right: 25px;
  flex-shrink: 0;
 }
}

.logo {
  width: 60px;
  height: 60px;
  padding: 5px;
  padding-top: 6px;
  border:2px solid #f13a2f;
  border-radius: 50%;
  background-color: black;
}

.header-menu {
 display: flex;
 align-items: center;
 cursor: pointer;
 margin-left: auto;
 height: 100;
 padding: 0 15px;
}*/

.menu-item {
 &:hover {
  color: var(--logo-color);
 }
 &:not(:last-child) {
  margin-right: 20px;
 }
}

.user-settings {
 display: flex;
 align-items: center;
 margin-left: auto;
 flex-shrink: 0;
 & > * + * {
  margin-left: 18px;
 }
}

.user-settings svg {
 width: 22px;
 flex-shrink: 0;
}

.button {
 display: flex;
 background-color: transparent;
 align-items: center;
 border: 2px solid var(--border-color);
 border-radius: 25px;
 color: var(--body-color);
 padding: 8px 16px;
 font-family: var(--body-font);
 cursor: pointer;
 font-weight: 600;
 font-size: 14px;
 svg {
  margin-right: 8px;
  width: 20px;
  fill: var(--body-color);
 }
}
.search-bar {
 height: 90px;
 position: relative;
 input {
  height: 100%;
  width: 100%;
  display: block;
  background-color: transparent;
  border: none;
  padding: 0 10px 0 54px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath d='M18.5 17h-.79l-.28-.27a6.5 6.5 0 10-.7.7l.27.28v.79l5 4.99L23.49 22l-4.99-5zm-6 0a4.5 4.5 0 11-.01-8.99A4.5 4.5 0 0112.5 17z' id='a'/%3e%3c/defs%3e%3cg transform='translate(-6 -6)' fill='none' fill-rule='evenodd'%3e%3cmask id='b' fill='%23fff'%3e%3cuse xlink:href='%23a'/%3e%3c/mask%3e%3cg mask='url(%23b)' fill='%23D8D8D8'%3e%3cpath d='M3 3h24v24H3z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 25px 50%;
  color: #7c7c7c;
  &::placeholder {
   color: var(--body-color);
  }
 }
}

.user-profile {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 object-fit: cover;
 + svg {
  width: 14px;
 }
}

.notify {
 position: relative;
 &:before {
  content: "";
  position: absolute;
  background-color: var(--logo-color);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: -6px;
  bottom: 15px;
 }
}

.menu-item.active {
 color: var(--logo-color);
}

.wrapper {
 width: 100%;
 display: flex;
 flex-grow: 1;
 overflow: auto;
 background-color: var(--theme-bg-color);
 margin-top: 65px;
}

.side-wrapper:not(:last-child) {
 border-bottom: 1px solid var(--border-color);
}

.side-wrapper svg {
 width: 20px;
 fill: var(--body-color);
 margin-right: 25px;
 flex-shrink: 0;
}

.username {
 color: var(--main-color);
 font-size: 15px;
}

.side-menu a {
 text-decoration: none;
 font-weight: 500;
 color: var(--main-color);
 display: flex;
 align-items: center;
 font-size: 15px;
 white-space: nowrap;
 &:not(:last-child) {
  margin-bottom: 20px;
 }
}

.side-menu {
 padding: 20px;
}

.side-title {
 padding: 0 0 20px;
 font-size: 15px;
}

.user {
 display: flex;
 align-items: center;
}

.user + .user {
 margin-top: 15px;
}

.user-img {
 border-radius: 50%;
 width: 30px;
 height: 30px;
 margin-right: 16px;
 object-fit: cover;
 object-position: center;
}

.show-more {
 margin-top: 20px;
 padding: 12px 16px;
}


.main-container {
 padding: 25px;
 flex-grow: 1;
 overflow: auto;
}

.profile {
 height: 45vh;
 max-height: 350px;
 min-height: 270px;
 position: relative;
 display: flex;
 justify-content: flex-end;
 flex-direction: column;
}

.profile-cover {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 border-radius: 4px 4px 6px 6px;
}

.profile-menu {
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: var(--header-bg-color);
 width: 100%;
 box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
 border-radius: 0 0 4px 4px;
 padding: 0 25px;
 z-index: 2;
}

.profile-img {
 border-radius: 50%;
 width: 42px;
 height: 42px;
 object-fit: cover;
 margin-right: 15px;
}

.profile-avatar {
 display: flex;
 align-items: center;
 flex-shrink: 0;
}

.profile-name {
 white-space: nowrap;
}

.menu-items {
 display: flex;
 cursor: pointer;
}

.profile-menu-link {
 padding: 20px;
 transition: 0.2s;
 text-decoration: none;
 color: var(--body-color);
 &.active,
 &:hover {
  border-bottom: 3px solid var(--logo-color);
  color: var(--logo-color);
 }
}

.profile-info {
 justify-content: center;
 display: flex;
 background-color: rgba(0, 0, 0, 0.3);
 width: 100%;
 z-index: 2;
}

.profile-name {
 color: var(--main-color);
}

.profile-item {
 display: flex;
 align-items: center;
 color: #fff;
 padding: 26px 16px;
 white-space: nowrap;
}
.fa-user, .fa-eye , .fa-flag , .fa-youtube{
  width: 22px;
  margin-right: 10px;
 }
.profile-contact-info {
 position: absolute;
 display: flex;
 right: 10px;
 top: 20px;
 color: #fff;
 svg {
  width: 18px;
 }
}

.profile-contact {
 border: 1px solid rgba(239, 239, 239, 0.5);
 padding: 16px;
 background:  rgba(239, 239, 239, 0.3);;
 margin-left: 10px;
 border-radius: 50%;
 cursor: pointer;
}
.profile-contact .fa-envelope{
  font-size: 25px;
  color: white;
}
.follow-buttons {
 display: flex;
}

.follow {
 border: 2px solid var(--border-color);
 border-radius: 25px 0 0 25px;
 color: var(--body-color);
 padding: 8px 16px;
 font-weight: 600;
 font-size: 14px;
 cursor: pointer;
 background-color: transparent;
 &:hover {
  background-color: var(--header-bg-color);
 }
}

.follow-option {
 border-radius: 0 25px 25px 0;
 margin-left: -2px;
}.follow-option {
  background-color: transparent;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bolder;
  letter-spacing: 1.3px;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}
.follow-option:hover {
  background-color: #5b55ff;
  color: #fff;
  font-weight: bolder;
}
.follow-option::before{
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 0;
  height: 100%;
  background-color: #5b55ff;
  transform: skewX(35deg);
  z-index: -10;
  transition: width 0.3s ease;
}
.follow-option:hover::before{
  width: 150%;
}
.trends {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 40px 45px;
 a {
  text-decoration: none;
  color: var(--body-color);
  display: flex;
  align-items: center;
  font-size: 15px;
  white-space: nowrap;
 }
}

.trends svg {
 width: 20px;
 margin-right: 16px;
}

.follow-option.active {
 margin-left: -3px;
}

.play-all {
 background-color: var(--logo-color);
 color: #fff;
 padding: 10px 20px;
 border-radius: 30px;
 display: flex;
 align-items: center;
 svg {
  width: 12px;
  flex-shrink: 0;
  margin-right: 8px;
 }
}

.videos {
 display: grid;
 grid-template-columns: repeat(4,1fr);
 grid-column-gap: 20px;
 grid-row-gap: 20px;
}


.video video {
 transition: .4s;
 max-width: 100%;
 display: block;
 border-radius: 4px 4px 0 0;
}

.video {
 overflow: hidden;
 box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
 border-radius: 4px;
 position: relative;
  background-color: var(--header-bg-color);
 cursor: pointer;
 &:hover .video-time {
  opacity: 0;
 }
 &:hover video {
  transform: scale(2.2);
  transform-origin: center;
 }
 &:hover .view {
  padding: 10px;
 }
}

.video-time {
 position: absolute;
 background-color: rgba(0, 0, 0, 0.5);
 padding: 8px;
 border-radius: 15px;
 font-size: 12px;
 color: #fff;
 bottom: 80px;
 right: 6px;
 transition: .3s ease-in;
}


.video-content {
 width: 100%;
 color: var(--main-color);
 padding: 15px 10px 0;
 border-radius: 0 0 4px 4px;
 font-size: 14px;
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 text-decoration: none;
} 
.view {
 padding: 10px;
 position: relative;
 background-color: var(--header-bg-color);
 z-index: 1;
 font-size: 13px;
}

.language {
 margin-bottom: 8px;
}

.footer-row {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.footer-links a {
 text-decoration: none;
 color: var(--main-color);
 & + a {
  margin-left: 8px;
 }
}

.footer-links {
 display: flex;
}

.link-footer a {
 color: var(--body-color);
 font-size: 14px;
}

.footer {
 padding: 30px 0;
 &-last {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
 }
}

.social-media {
 display: flex;
 align-items: center;
 svg {
  width: 100%;
 }
 a {
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--body-color);
  padding: 8px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 12px;
 }
}

.policy a {
 text-decoration: none;
 color: var(--body-color);
}

@media (max-width:1030px) {
 .profile-name {
  display: none;
 }
 .profile-menu-link {
  padding: 20px 10px;
  font-size: 14px;
 }
 
 .trends {
  padding: 40px 10px;
 }
}

@media (max-width: 1120px) {
 .footer-row {
  flex-direction: column;
  & + & {
   margin-top: 10px;
  }
  .button {
   display: none;
  } 
 }
}

@media (max-width:900px) {
 .play-all {
  color: transparent;
  white-space: nowrap;
  width: 30px;
  padding: 0;
  fill: #fff;
  height: 30px;
  position: relative;
 }
 .profile-item {
  padding: 20px 10px;
 }
 .play-all svg {
  position: absolute;
  left: 58%;
  top: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
 }
}

@media (max-width: 840px) {
 .profile-contact {
  padding: 6px;
 }
 .profile-item, .profile-avatar {
  flex-direction: column;
 }
 .profile-item svg {
  margin-right: 0;
 }
 .profile-item {
  text-align: center;
 }
 .profile-img {
  margin-right: 0;
  margin-top: 10px;
 }
 .profile-name {
  display: block;
  margin-bottom: 10px;
  margin-top: 6px;
 } 
 .profile-menu {
  flex-direction: column;
 }
 .menu-items {
  order: 1;
 }
}


@media (max-width: 980px) {
 .videos {
  grid-template-columns: 1fr 1fr;
 }
  .profile {
  min-height: 380px;
  max-height: 380px;
 }
}

@media (max-width: 800px) {
 .trends .follow-buttons {
  display: none;
 }
}

@media (max-width: 750px) {
 .left-side {
  display: none;
 }
 .header-menu {
  display: none;
 }
 .search-bar input {
  max-width: 140px;
 }
 .user-settings button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  position: relative;
  color: transparent;
 }
 .user-settings button svg {
  margin-right: 0;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
 }
}

@media (max-width: 440px){
 .user-settings svg {
  display: none;
 }
 
 .videos{
  grid-template-columns:1fr;
 }
}


.dark-light {
 position: fixed;
 bottom: 125px;
 right: 40px;
 background-color: var(--header-bg-color);
 box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
 padding: 8px;
 border-radius: 50%;
 z-index: 3;
 svg {
  width: 28px;
 }
}

.dark-mode .dark-light svg {
    fill: #ffce45;
    stroke: #ffce45;
}

.dark-light svg {
    fill: transparent;
    transition: 0.5s;
}

@media (max-width: 475px) {
 .footer-links {
  flex-direction: column;
 }
 .footer-links a + a {
   margin-left: 0;
}
 .footer-row:last-child {
  align-items: flex-end;
 }
 .footer-row {
  align-items: flex-start;
 }
 .footer {
  display: flex;
  justify-content: space-between;
 }
 .footer-links a {
  margin-bottom: 5px;
 }
 .policy {
  display: none;
 }
}
      /*foter animation*/
      #animation {
        background: #080a3c;
        height: auto;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        border-radius: 75px 75px 0px 0px;
      }
      #animation::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url(img/tt.png);
        animation: imgChange 1s linear 1s infinite;
      }
      #animation::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url(img/tt.2.png);
        animation: imgChangeTwo 1s linear 1s infinite;
      }
      @keyframes imgChange {
        0% {
          opacity: 0;
        }
        50% {
          opacity: 1;
        }
        100% {
          opacity: 0;
        }
      }
      @keyframes imgChangeTwo {
        0% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
      /* The footer is fixed to the bottom of the page */
      
      footer {
        position: fixed;
        bottom: 0;
      }
      
      @media (max-height:800px) {
        footer {
            position: static;
        }
        header {
            padding-top: 40px;
        }
      }
      
      .footer-distributed {
        box-sizing: border-box;
        width: 100%;
        text-align: left;
        font: bold 16px sans-serif;
        margin-top: 80px;
        padding: 20px;
        position: relative;
        z-index: 2;
      }
      
      .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: inline-block;
        vertical-align: top;
      }
      
      /* Footer left */
      .footer-distributed .footer-left {
      width: 35%;
      padding: 10px;
      }
      
      .footer-distributed .footer-left i {
      background-color: #33383b;
      color: #ffffff;
      font-size: 25px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      text-align: center;
      line-height: 42px;
      margin: 10px 15px;
      vertical-align: middle;
      }
      
      .footer-distributed .footer-left i.fa-envelope {
      font-size: 17px;
      line-height: 38px;
      }
      
      .footer-distributed .footer-left p {
      display: inline-block;
      color: #ffffff;
      vertical-align: middle;
      margin: 0;
      }
      
      .footer-distributed .footer-left p span {
      display: block;
      font-weight: normal;
      font-size: 14px;
      line-height: 2;
      }
      
      .footer-distributed .footer-left p a {
      color: #e0ac1c;
      text-decoration: none;
      ;
      }
      
      
      /* Footer links */
      
      .footer-distributed .footer-links {
        color: #ffffff;
        margin: 20px 0 12px;
      }
      
      .footer-distributed .footer-links a {
        display: inline-block;
        line-height: 1.8;
        text-decoration: none;
        color: inherit;
      }
      
      .footer-distributed .footer-company-name {
        color: #8f9296;
        font-size: 14px;
        font-weight: normal;
        margin: 0;
      }
      
      /* Footer Center */
      
      
      .footer-distributed .footer-center {
      width: 30%;
      }
      
      .footer-distributed h3 {
      color: #ffffff;
      font: normal 36px 'Cookie', cursive;
      margin: 0;
      }
      
      
      .footer-distributed h3 span {
      color: #e0ac1c;
      }
      
      
      /* Footer Right */
      
      .footer-distributed .footer-right {
        width: 30%;
      }
      
      .footer-distributed .footer-company-about {
        line-height: 20px;
        color: #92999f;
        font-size: 13px;
        font-weight: normal;
        margin: 0;
      }
      
      .footer-distributed .footer-company-about span {
        display: block;
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
      }
      
      .footer-distributed .footer-icons {
        margin-top: 25px;
      }
      
      .footer-distributed .footer-icons a {
        display: inline-block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color: #33383b;
        border-radius: 2px;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        line-height: 35px;
        margin-right: 3px;
        margin-bottom: 5px;
      }
      
      .footer-distributed .footer-icons a:hover {
        background-color: #3F71EA;
        transition: .5s;
        transform: scale(1.2);
      }
      
      .footer-links a:hover {
        color: #3F71EA;
        transition: .5s;
      }
      
      @media (max-width: 880px) {
        .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
            display: block;
            width: 100%;
            margin-bottom: 40px;
            text-align: center;
        }
        .footer-distributed .footer-center i {
            margin-left: 0;
        }
      }       
      /*logo*/
      .mr{
      border: 2px solid #fafafa;
      border-radius:50% ;
      width: 5.5em;
      height: 5.5em;
      margin-left: 20px;
      }        
      .mr img{
      width: 5em;
      height: 5em;
      padding: 7px;
      }
      .tainor{
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      h1{
        color: #000000;
        font-size: 75px;
      }
      
      span{
        color: #fff724;
      }
/*Go to top*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom:165px; /* Place the button at the bottom of the page */
  right: 23px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 26px; /* Increase font size */
  width: 3em;
  height: 3em;
  background: none;
}

#myBtn img{
  width: 3em;
}
.movie_title{
  text-align: center;
}
.movie_videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 20px;


.movie_video {
  overflow: hidden;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
  background-color: var(--header-bg-color);
  cursor: pointer;
}

.movie_video-time {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 15px;
  font-size: 12px;
  color: #fff;
  bottom: 80px;
  right: 6px;
  transition: .3s ease-in;
}

.movie_video:hover .movie_video-time {
  opacity: 0;
}
.img {
  max-height: 12em;
  width: 100%;
  object-fit: fill;
}
