*{
    margin: 0px auto;
}
body{
    display: flex;
    font-family: cursive;
    width: 100%;
    flex-direction: column;
    /* height: 100vh; */
    /* background: linear-gradient(to right, rgb(44, 196, 33) 15%, rgb(35, 180, 199)); */
    background: url("./kinqz.png") fixed center center;
    /* background-image: url(./kinqz.png); */
    background-size: cover ;
    background-repeat: no-repeat;
    
}
header{
    text-align: center;
    width: 100%;
    
    
    
}
header h1{
    font-weight: 700;
    background-color: azure;
    width: inherit;
    font-style: italic;
    font-size: clamp(16px,20vw,40px);
    

}
main{
    border: none;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 90%;
    /* overflow-x: hidden; */

}
.imgcontainer{
    display: flex;
    width: 100vw;
    justify-content: center;
    height: 83vh;



}

button{
    font-size: xx-large;
    padding: 7px;
    border:none;
    
    font-weight: 600;
    border-radius: 20px/35px;
    background-color: aliceblue;
    align-self: center;
    z-index: 1;
    box-shadow: 6px 3px 5px 0px #211d1d,
                -3px 3px 17px 1px #080707,
                inset 1px 1px 13px 0px #474e50;;
}
.imgslider{
    position: absolute;
    transition:animation 2ms ease-in-out;
    opacity: 0.9999 ;
    
    width:80%;
    height: inherit;
    animation: slider 2s ease-in-out 1 backwards;
    animation-delay: 2ms;

}
.imgslider:last-of-type{
    animation-delay: 0ms;
 
}
/* img{
   
    animation: slider 2s ease-in-out 1 backwards;
} */
@keyframes slider {
    0%{
        transform:translateX(-100%);

        transform-origin: right;
    }
    50%{
        transform: translateX(0%);
 
    }
    100%{
        transform: translateX(0%);
  
    }
    
}

.show{
    display:block ;
   
    
}
.hidden{
    
    /* z-index: -1;
    display: none; */
    opacity: 0;
}
footer{
    background-color: aliceblue;
    text-align: center;

    display: flex;
    flex-direction: column;
    width: inherit;
    padding-top: 6px;
    height: 7vh;
    position: absolute;
    bottom: 0px;
}
footer p{
    display: flex;
    margin-bottom: 0px;
}
footer img {
    padding: 0px 8px;
}
@media only  screen and (max-width:600px){
    .imgslider{
        width: 95%;
    }
}