body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex; 
    flex-direction: column; /* Stack logo and text vertically in mobile view */
    align-items: center;
}

.logo {
    max-width: 400px;
    margin-bottom: 10px; /* Space between logo and text in mobile view */
}

.header-content {
    display: flex;
    flex-direction: column; /* Keep logo and text stacked in both mobile and desktop view */
    align-items: center; 
    width: 100%;
}

.header-text {
    text-align: center; /* Center the text in both mobile and desktop view */
}

@media (min-width: 1024px) {
    .header-content {
        flex-direction: row; /* Side by side in desktop view */
        justify-content: center; /* Center the content horizontally */
    }

    .logo {
        max-width: 300px; /* Reduce logo width to 25% in desktop view */
        margin-right: 20px; /* Space between logo and text in desktop view */
    }
    
    .header-text {
        text-align: left; /* Align text to the left in desktop view */
    }
}

.short-description {
    padding: 20px;
    text-align: center;
}

.poster {
    margin: 20px 0;
    text-align: center;
}

.poster-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); /* Subtle shadow */
}

.long-description {
    padding: 20px;
    text-align: justify;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer a {
    color: #ff0000; /* Red accent */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.internal-link {
    color: inherit; /* Use default link color */
    
}

.external-link {
    color: #ff0000; /* Red accent for external links */
    text-decoration: none;
}

.external-link:hover {
    text-decoration: underline; /* Underline on hover */
}

