*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}

body{
    background: #464545;
    color: #fff;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    position:relative;
}

.header{
    width:100%;
    height:200px;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
}

nav{
    margin-left: 5px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* space is made in between by shifting logo to left and anchors to right */
}

.search{
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;

}

.search input{
    border: 0;
    outline:0;
    padding: 5%;
    font-size: 16px;
    border-top-left-radius: 10px ;    
    border-bottom-left-radius: 10px ;      
}

.search button{
    background: rgb(6, 44, 236);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #f0e7e9;
    font-size: 16px;
    border: 0;
    outline:0;
    padding: 5%;
}

#search-button:hover {
    background-color: #d3d6e0;
    color: black;
}

.navclass a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;  
    /* removes underline below anchors */
    font-size: 17px;
}
  
.navclass a:hover {
    background-color: #ddd;
    color: black;
}
  
.navclass a.active {
    background-color: #04AA6D;
    color: white;
}

.content{
    border-radius: 10px;
    margin: 15px ;
    padding: 2%;
    width:98%;
    height:100%;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
    

}


#show_container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;  /* Center Vertically */
    justify-content: space-evenly;  /* Center Horizontally */
    column-gap: 15px;  /* Set gap between images */
    row-gap: 15px
    

}

.showPoster{
    /* box-shadow: 0 10px 20px rgb(132, 123, 123); */
    border-radius: 5px;
}

.hoverCard{
    padding: 5px;
    border-radius: 10px;
    height:292px;
    width:207px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    cursor: pointer;   
    transform: translate(1.1%,-101.5%);
}

.hoverCard:hover{    
    opacity : 0.8;
    background-image: linear-gradient(rgba(0,0,0,0.95),rgba(0,0,0,0.95));

}


