body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #021224;
    color: white;
}

h1 {
    text-align: center;   
    margin-bottom: 70px; 
    font-size: 60px;      
    color: #ffffff;       
}

.movie h2 {
    width: 250px;       
    text-align: left;   
    margin: 0 0 10px 0;  
    font-size: 20px;     
}

.movies-container {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 30px;
    justify-content: center;
}

.movie {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;            
    margin-bottom: 20px;
}

.movie img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie img:hover {
    transform: scale(1.05); 
    box-shadow: 
        0 0 15px rgba(255,255,255,0.6),  
        0 10px 20px rgba(0,0,0,0.5);      
    cursor: pointer;
}

.movie-info {
    width: 70%;
    text-align: left;
    margin-top: 10px;
}

.movie-info a {
    display: block;
    margin: 1px 0;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
} 

.youtube-link {
    display: inline-flex;     
    align-items: center;     
    gap: 8px;                 
    font-size: 14px;
}

.youtube-link img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}