@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@400;600;700&display=swap");

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
html ::-webkit-scrollbar{
    background:transparent;
    width: 10px;
    height: 10px;
}
html ::-webkit-scrollbar-thumb{
    background-color: #000;
    border-radius: 30px;
    transition:0.5s;
}
html ::-webkit-scrollbar-thumb:hover{
    background-color:#111;
    transition:0.5s;
}
body{
    background-color: black;
    background: url(Images/Dark\ background\ home\ page\ image.jpg);
    background-size: cover;
    transition: 1s;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow-x: hidden;
}
body ::selection{
    color: #f00;
}
header{
    width: 94%;
    /* background-color: #fff; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    place-items: center;
    margin: auto;
    background-color: #000;
    margin-left: 8%;
    padding: 0;
    padding-bottom: 3%;
    height: 75px;
    position: fixed;
    z-index: 2;
}
header h1{
    /* display: flex;
    text-align: center;
    justify-content: center;
    place-items: center;
    align-items: center; */
    font-family: "Audiowide","shadow-multiple";
    margin-left: 30%;
    font-size: 50px;
    margin-top: 2%;
    transition: all 0.5s ease-in-out;
    animation: flicker 0.5s ease-in-out infinite alternate;
    text-shadow: 2px 2px 10px red;
    -webkit-text-stroke: #fff;
	-webkit-text-stroke-width: 1px;
}
.log-out{
    display: flex;
    margin-left: auto;
    margin-right: 10%;
}
.log-out .fa-arrow-right-from-bracket{
    font-size: 32px;
    color: #a00;
    align-items: center;
    transition: 500ms;
}
.log-out .fa-arrow-right-from-bracket:hover{
    color: #00f;
    font-size: 35px;
}
.logo{
    margin-top: 5%;
    margin-left: 5%;
    height: 100px;
    width: 120px;
}
aside{
    background-color: #fff;
    transition: 1s;
    width: 5%;
    height: 100%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    text-align: center;
    align-items: center;
    left: 0;
}
aside ul li a .fa-solid{
    margin-top: 30px;
    color: #000;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}
aside ul li a .fa-solid:hover{
    font-size: 25px;
    color: #00f;
    box-shadow: inset 3px 3px 4px darkgray;
    border-radius: 30px;
    padding: 20px;
}
aside ul li{
    display: block;
    list-style-type: none;
}
aside ul li a img {
    height: 20px;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.3s;
}
aside ul li a img:hover{
    height: 25px;
    box-shadow: inset 3px 3px 4px darkgray;
    border-radius: 30px;
    padding: 20px; 
}
/* aside ul li a.fa-solid{
    color: #000;
    
} */
#menu{
    background-color: white;
    width: 5%;
    height: 9.4%;
    padding: 2%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    z-index: 3;
    color: #000;
}
.fa-bars{
    margin-top: 30px;
    transition: 0.5s;
}
.fa-bars:hover{
    height: 10px;
    box-shadow: inset 3px 3px 4px #5e5e79;
    border-radius: 30px;
    padding: 20px; 
    color: #f00;
}
aside ul li a .fa-solid::after{
    color: #000;
    display: block;
}
aside ul li a .fa-house:hover::after{
    content: " Home";
    font-family: cursive, Arial;
    font-size: 16px;
}
aside ul li a .fa-phone:hover::after{
    content: " Contact Us";
    font-family: cursive, Arial;
    width: 100%;
    font-size: 16px;
}
aside ul li a .fa-info:hover::after{
    content: "About Us";
    font-family: cursive, Arial;
    width: 100%;
    font-size: 16px;
}
aside ul li a .fa-circle-half-stroke:hover::after{
    content: "Light/Dark mode";
    font-family: cursive, Arial;
    width: 100%;
    font-size: 16px;
}
aside ul li a .fa-clapperboard:hover::after{
    content: "vidWatch Shorts";
    font-family: cursive, Arial;
    width: 100%;
    font-size: 16px;
}
aside.active{
   left: -500px;
}
.light-mode{
    background: url("Images/NEW\ WHITE\ BACKGROUND.jpg");
    background-size: cover;
    color: #000;
}
.dark-aside{
    background-color: #000;
}
.dark-aside ul li a .fa-solid{
    color: #fff;
}
.dark-aside ul li a .fa-solid:hover{
    color: #f00;
}
.dark-aside ul li a img{
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
}
.dark-aside ul li a .fa-solid::after{
    color: #fff;
}
.dark-menu{
    background-color: rgb(0, 0, 0) !important;
    color: #fff;
}
.dark-menu .fa-bars{
    color: #fff;
}
/* .first-section{
    display: block;
    height: 100vh;
    margin-top: 5%;
    margin-left: 6%;
}
.vid-short{
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2%;
    width: 94%;
    margin-left: 4%;
    place-items: center;
}
#slider{
    transition: 1s;
    height: 50%;
    border-radius: 10%;
    overflow: auto;
    resize: both;
    position: relative;
    animation: slider 1s ease-in-out 1;
    cursor: pointer;
}
@keyframes slider {
    0%{
      right: -400px;
    }
    50%{
        right: 50px;
    }
    100%{
        right: 0;
    }
}
.vid-btn{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 10%;
    cursor: pointer;
    background-color: #f00;
    font-weight: 900;
    padding: 3%;
    height: 3%;
    font-size: 27px;
    transition: 1s;
}
.vid-btn:hover{
    background-color: #05f;
    color: rgb(255, 255, 255);
}
#prev{
    margin-right: 2%;
}
#next{
    margin-left: 2%;
}
.short-text{
    font-weight: 900;
    font-size: 55px;
    text-shadow: 3px 3px 3px gray;
    color: #03f;
    text-decoration: underline;
    /* display: flex;
    flex-direction: column; 
} 
.pausedslider{
    filter: brightness(50%);
}*/
/* #video-name{
    display: block;
} */
.home-section{
    margin-top: 20%;
    /* background-color: red; */
}
.home-text{
    font-size: 30px;
    margin-left: 11%;
    background: linear-gradient(90deg, rgb(190, 58, 58), rgb(27, 82, 235), rgb(255, 255, 255));
    letter-spacing: 5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 4s linear infinite;
    position: relative;
    margin-bottom: 5%;
    margin-top: -10%;
}
@keyframes shine{
    0%{
        background-position-x: -500%;
    }
    100%{
        background-position-x: 500%;
    }
}
.image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%;
    height: 100%; */
    /* animation-name: slide;
    animation-duration: 4s; */
    /* position: absolute; */
}
/* @keyframes slide {
    0%   {left:0px; top:0px;}
    25%  {left:200px; top:0px;}
    50%  {left:200px; top:200px;}
    75%  {left:0px; top:200px;}
    100% {left:0px; top: 15px;}
  } */
.image-container img{
    transition: 1s;
    height: 400px;
    border-radius: 30px;
    margin-left: 9.5%;
    box-shadow: 5px 3px 5px 5px rgba(21, 22, 27, 0.5);
    transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
    z-index: -2;
}
.image-container img:hover{
    height: 420px;
} 
.second-section{
    background-color: #000;
    border-radius: 30px;
    /* display: flex;
    justify-content: center; */
    margin-left: 9%;
}
.playlist-text{
    transition: all 0.5s ease-in-out;
    animation: flicker 0.5s ease-in-out infinite alternate;
    text-shadow: 2px 2px 10px red;
    -webkit-text-stroke: #fff;
	-webkit-text-stroke-width: 1px;
    color: transparent;
    position: unset;
}
@keyframes flicker {
	0% {
		opacity: 0.5;
		text-shadow: 2px 2px 10px red;
	}
	100% {
		opacity: 1;
		text-shadow: 2px 2px 20px blue;
	}
}
.second-section div{
    display: flex;
    flex-direction: column;
}
.cu-text{
    transition: all 0.5s ease-in-out;
    animation: flicker 0.5s ease-in-out infinite alternate;
    text-shadow: 2px 2px 10px red;
    -webkit-text-stroke: #fff;
	-webkit-text-stroke-width: 1px;
    text-decoration: underline;
    color: #00f;
}
.second-section div div{
    background-color: rgb(31, 30, 30);
    margin-top: 1%;
    padding: 50px;
    cursor: pointer;
    font-weight: 900;
    text-shadow: 2px 2px 2px black;
    transition: 0.6s;
}
.second-section div div div{
    display: flex;
}
.second-section div div ul{
    margin-top: 5%;
    display: none;
}
.comedy-details{
    display: block !important;
}
.insp-details{
    display: block !important;  
}
.veh-details{
    display: block !important;  
}
.second-section div div ul li{
    display: grid;
}
.second-section div div ul li a{
    text-decoration: none;
    color: white;
    margin: 5px;
}
.second-section div div ul li a:hover{
    color: #f00;
}
.second-section div div:hover{
   background-color: rgb(22, 22, 22);
   color: rgb(0, 100, 255);
}
.playlist-text{
    color: #03f;
    font-weight: 900;
    font-size: 55px;
    text-shadow: 3px 3px 3px gray;
    text-decoration: underline;
}
.dark-playlist-text{
    color: red;
}
.contact-section{
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column; 
    padding: 5%;
    margin-left: 9%;
    color: #fff;
    background-color: #000;
    font-family: sans-serif;
}
.contact-section .email{
    margin-top: 2%;
    font-size: 22px;
}
.contact-section address{
    margin-top: 2%;
    font-size: 22px;
}
.telephone{
    margin-top: 2%;
    font-size: 22px;
}
.whatsapp{
    margin-top: 1%;
    font-size: 22px;
}
.contact-section h2{
    font-size: 40px;
}
.second-section .cu-text{
    font-size: 40px;
}
.contact-form{
    display: grid;
    width: 50%;
    margin-top: 5%;
    margin-left: 25%;
    border: 2px solid #00f;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 3%;
    overflow: auto;
}
.contact-form h2{
    font-size: 36px;
    margin-bottom: 3%;
    transition: all 0.5s ease-in-out;
    animation: flicker 0.5s ease-in-out infinite alternate;
    text-shadow: 2px 2px 10px rgb(0, 4, 255);
    -webkit-text-stroke: #fff;
	-webkit-text-stroke-width: 1px;
    color: rgb(255, 0, 55);
}
input{
    margin-bottom: 1%;
}
#user-name{
    padding: 1%;
}
#user-email{
    padding: 1%;
}
#bio{
    padding: 2%;
}
#submit{
    width: 50%;
    padding: 1%;
    background-color: #f00;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-top: 6%;
    margin-left: 25%;
    cursor: pointer;
    transition: 0.7s;
    transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}
#submit:hover{
    background-color: #a00;
}
.about-section{
    display: block;
    padding: 5%;
    margin-left: 9%;
    /* margin-top: 1%; */
    background-color: #000;
    color: #ffffff;
}
.about-section h2{
    font-size: 40px;
    font-weight: 700;
    font-family: sans-serif;
    transition: all 0.5s ease-in-out;
    animation: flicker 0.5s ease-in-out infinite alternate;
    text-shadow: 2px 2px 10px red;
    -webkit-text-stroke: #fff;
	-webkit-text-stroke-width: 1px;
    text-decoration: underline;
    color: #00f;
}
.about-section .about-text{
    font-size: 20px;
    font-weight: 630;
}
.about-section div{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.about-section h5{
    font-size: 20px;
    width: 50%;
}
.about-section div img{
    height: 350px;
    margin-top: 2%;
    margin-bottom: 2%;
    border: 2px groove red;
    border-radius: 40px;
    transition: 2s;
    /* -webkit-transform: rotate(50deg) skewY(10deg); */
}
.about-section #image{
    /* -webkit-animation-name: imagee;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 5s;
    -webkit-animation-duration: 5s;
    -webkit-animation-direction: reverse; */
    transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}
@keyframes float{
0% {
    box-shadow: 0 5px 15px 0px rgba(201, 67, 67, 0.6);
    transform: translatey(0px);
}
50% {
    box-shadow: 0 25px 15px 0px rgba(75, 71, 71, 0.2);
    transform: translatey(-30px);
}
100% {
    box-shadow: 0 5px 15px 0px rgba(25, 31, 68, 0.6);
    transform: translatey(0px);
}
}

.about-section div p{
    font-size: 22px;
    font-weight: 700;
    font-family: cursive;
}
.about-section .attribution-section{
    display: grid;
    font-size: 20px;
    margin-top: 5%;
}
.about-section .attribution-section h4{
    font-size: x-large;
}
.about-section .attribution-section a{
    margin-top: 2%;
    color: #05f;
    text-decoration: none;
}
footer{
    background-color: #f82020ee;
    padding: 2%;
    margin-left: 9%;
    font-size: 20px;
    font-weight: 700;
    /* height: 50px; */
    color: rgb(255, 255, 255);
}
footer ul{
    display: flex;
    gap: 6%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
footer ul .fa-brands{
    color: rgb(255, 255, 255);
    transition: 1s;
}
footer ul .fa-whatsapp:hover{
    color: #128c7e;
}
footer ul .fa-facebook-f:hover{
    color: #0f3d99;
}
footer ul .fa-twitter:hover{
    color: #00acee;
}
footer p {
    text-align: center;
}   
footer::selection{
    color: #00f;
}
@media screen and (max-width:800px) {
    .aside-body{
        overflow: hidden;
    }
    aside{
        left: -100px;
        transition:all 2s;
        position: absolute;
        z-index: 20;
        height: 90%;
        /* margin-bottom: -50%; */
    }
    aside.active{
       width:100%;
       height: 90%;
       left: unset;
       top: 10%;
       position: fixed;
    }
    #menu{
        width: 100%;
        height: unset;
        content: "vidWatch Shorts";
    }
    .log-out{
        margin: unset;
    }
    #image-slider{
        height: 130px;
    }
    .logo{
        height: 45px;
        width: 60px;
    }
    header{
        margin: unset;
        margin-top: 17%;
        width: 100%;
        justify-content: space-around;
        /* position: inherit; */
    }
    header h1{
        font-size: 30px;
        margin-left: unset;
    }
    .home-section{
        margin-left: -12%;
    }
    .home-text{
        margin-top: 27%;
        font-size: 20px;
        margin-bottom: -20%;
    }
    .image-container{
        margin-top: 130px;
        margin-bottom: 10px;
    }
    .second-section{
        margin: unset;
    }
    .playlist-text{
        font-size: 40px;
    }
    .contact-section{
        margin: unset;
    }
    .contact-section .cu-text{
        font-size: 25px;
        text-decoration: underline;
    }
    .email .email-text{
        font-size: 30px;
    }
    .contact-form{
        width: 80%;
        margin: 5%;
    }
    .about-section{
        margin: unset;
        padding-right: 8%;
    }
    .about-section div{
        display: block;
    }
    .about-section div img{
        height: 180px;
        width: 135px;
        border-radius: 20%;
        justify-content: left;
        margin-top: 15%;
    }
    .about-section div h5{
        font-size: 16px;
        width: 60%;
        text-align: center ;
        align-items: right;
        justify-content: right;
        margin-left: 20%;
    }
    .about-section .attribution-section{
        margin-top: 15%;
    }
    .contact-section div p{
        font-size: 18px;
    }
    footer{
        margin: unset;
        font-size: 15px;
    }
    /* aside ul li a .fa-house::after{
        content: " Home";
        font-family: cursive, Arial;
        font-size: 16px;
        font-weight: 500;
    }
    aside ul li a .fa-phone::after{
        content: " Contact Us";
        font-family: cursive, Arial;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
    aside ul li a .fa-info::after{
        content: "About Us";
        font-family: cursive, Arial;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
    aside ul li a .fa-circle-half-stroke::after{
        content: "Light/Dark mode";
        font-family: cursive, Arial;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
    aside ul li a .fa-clapperboard::after{
        font-weight: 500;
        font-family: cursive, Arial;
        width: 100%;
        font-size: 16px;
    } */
}