::-webkit-scrollbar{
    display: none;
}
body{
    margin: 0;
    padding: 0;
    background: #fff;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 65px;
    background: #fff;
    box-shadow: 4px 4px 8px rgb(201, 201, 201);
}
nav #logo{
    margin-left: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
nav #logo:hover > h1{
    text-shadow: 4px 4px 8px rgb(192, 192, 192);
}
nav #logo img{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    box-shadow: 4px 4px 8px rgb(201, 201, 201);
    border: 1px solid rgb(221, 221, 221);
}
nav #logo h1{
    color: red;
    margin-left: 8px;
    font-size: 23px;
    transition: 0.5s;
    text-align: center;
}
nav .menu{
    margin-right: 8px;
    display: flex;
    align-items: center;
}
nav .menu a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px;
    text-decoration: none;
    color: royalblue;
    transition: 0.5s;
    border-bottom: 2px solid royalblue;
}
nav .menu a:hover{
    color: red;
}
nav .menu a i{
    font-size: 20px;
    display: none;
}
nav .menu a p{
    margin: 3px;
    padding: 0;
}
#lis{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
}
.video{
    width: 63%;
    height: max-content;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    box-shadow: 4px 4px 8px rgb(179, 179, 179);
    justify-content: space-between;
    margin: 5px;
}
.video .tv{
    display: flex;
    flex-direction: column;
    position: relative;
}
.video .tv embed{
    width: 423px;
    height: 232px;
}
.video .tv img{
    height: 59px;
    width: 59px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}
.video .contents{
    padding: 8px;
}
.video .contents h1{
    margin: 5px 8px;
    padding: 0;
    color: teal;
    font-size: 28px;
}
.video .contents h5{
    color: rgb(94, 94, 94);
}
.foot{
    width: 100%;
    height: max-content;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
  }
  .foot .links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
    
  }
  .foot .links a{
    margin: 9px;
    text-decoration: none;
    color: rgb(0, 102, 255);
    transition: 0.5s;
  }
  .foot .links a:hover{
    color: red;
  }
  .foot .flogo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: max-content;
    border-top: 2px double rgb(202, 202, 202);
  }
  .foot .flogo img{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    box-shadow: 4px 4px 8px rgb(185, 185, 185);
    margin-right: 5px;
  }
  .foot .flogo h3{
    color: red;
    font-size: 20px;
    margin-left: 5px;
  }

@media(max-width:1191px){
    .video{
        width: 80%;
    }
}
@media (max-width:791px){
    nav #logo img{
        height: 50px;
        width: 50px;
    }
    nav #logo h1{
        font-size: 18px;
    }
    nav .menu{
        position: fixed;
        bottom: 0;
        background: #fff;
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0;
        z-index: 2;
        border-top: 1px solid rgb(204, 204, 204);
    }nav .menu a{
        border: none;
        margin: 5px;
    }nav .menu a i{
        display: block;
    }
    #lis .video{
        width: 91%;
    }
    #lis .video .tv{
        width: 100%;
    }
    #lis .video .tv embed{
        width: 100%;
        height: 282px;
    }
    #lis .video .contents h1{
        font-size: 23px;
    }
    .foot .flogo img{
        height: 50px;
        width: 50px;
      }
      .foot .flogo h3{
        font-size: 17px;
      }
}