body{
   background: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
    font-family:'Courier New', Courier, monospace;
    color: white;
}

header{
    color: rgb(85, 0, 128);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
#slogan{
    color: rgb(85, 0, 128);
    text-align: center;
    font-weight: 600;
}
.movieIdea-block{
     display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
    background-color:rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 20px;
    margin: 10px auto;
    width: 60%;
}
.flex-up{
     max-width: 30%;
    text-align: center;
}
.flex-up img{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
#movieDescribeH{
    color: rgb(85, 0, 128);

}
textarea{
    width: 75%;
    height: 50px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 13px;
}
label{
    margin-bottom: 10px;
    font-weight: bold;
    color: rgb(85, 0, 128);
}
#genre{
    width: 40%;
    padding: 5px;
    border-radius: 15px;
    border: 1px solid #ccc;
    font-size: 13px;
    color: rgb(85, 0, 128);
}
button{
    display: block;
    margin: 10px auto;
    background-color: hotpink;
    color: white;
    border: none;
    padding: 20px 25px;
    border-radius: 15px;
    cursor: pointer;
}
button:hover{
    background-color: plum;
    color: rgb(85, 0, 128);
}
#movieImageH{
    color: rgb(85, 0, 128);
}
.storyline-block{
    text-align: center;
   text-align: center;
    background-color:rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 20px;
    margin: 10px auto;
    width: 60%;
}
#storylineH{
   color: rgb(85, 0, 128);
}
#storyline{
    color: rgb(85, 0, 128);
    line-height: 1.5;
}
.popularAI-Generated-movies-block{
    text-align: center;
    background-color:rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 20px;
    margin: 10px auto;
    width: 60%;
}
#popularMovies{
   color: rgb(85, 0, 128);
}
.image-grid{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    
}
.image{
    max-width: 30%;
    text-align: center;
    color: rgb(85, 0, 128);
   
}
.image img{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
footer{
    display: block;
    text-align: center;
    margin-top: 20px;
    color: white;
    font-weight: bold;
}


