html, body {
    height: 100%;
}

/*General Page Styles*/ 
body {
    background-color: #121212;
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.25;
}

/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
}

h1 {
    margin: 50px;
    font-size: 3.5rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    padding-top: 20px;
    text-align: center;
}

h3 {
    padding: 15px;
}

/*Paragraph Styling*/
p {
    font-size: 1.25rem;
    line-height: 1.6;
    padding-bottom: 15px;
}

/*Lists*/
ul {
    list-style-position: outside; /* Ensures bullets are outside the text */
    padding-left: 30px; /* Adjusts left padding to align the list */
}

li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}


/*Layout and Containers*/

article {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 55px;
        margin-bottom: 50px;
    }


.quote {
    font-size: 1.75rem;
    margin: 50px auto;
    text-align: center;
}

/*Script Styling*/
pre.script {
    font-family: "Courier New", monospace;
    font-size: 12pt;
    white-space: pre-wrap; /* Ensures script text wraps properly */
    background-color: #000; 
    color: white; 
    padding: 10px;
    border-radius: 5px;
}

/* Ensures script headings stay in "Courier New" */
pre.script h1, pre.script h2, pre.script h3, pre.script h4, pre.script h5, pre.script h6 {
    font-family: "Courier New", monospace;
    text-transform: none; 
    font-size: 12pt; 
    font-weight: normal; 
}

/*Image Styling*/
img {
    width: 100%; 
    height: auto; 
    display: block; 
    margin: auto;
}

/*YouTube Video Container*/
.youtube-video-container {
    position: relative;
    padding-bottom: 56.25%; /*16:9 aspect ratio*/
    height: 0;
    overflow: hidden;
    max-width: 99%;
    background: #000;
    margin: auto;
    margin-bottom: 50px;
}

.youtube-video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Container for the clickable movie posters */
.movie-container {
    width: 95%; 
    margin: auto; 
    text-align: center;
    overflow: hidden; 
}

/* Individual movie posters */
.movie-container a {
    display: inline-block;
    vertical-align: top;
    width: 150px; 
    margin: 10px; 
}

/* Ensures all images are the same size */
.movie-container img {
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    border-radius: 10px; 
}

/*Hover Effect*/
.movie-container img:hover {
    transform: scale(1.1); 
}

/* When screen width is below 800px (4 per row) */
@media (max-width: 800px) {
    .movie-container a {
        width: 22%
    }
}

/* When screen width is below 650px (3 per row) */
@media (max-width: 650px) {
    .movie-container a {
        width: 30%; 
    }
}

/* When screen width is below 500px (2 per row) */
@media (max-width: 500px) {
    .movie-container a {
        width: 45%;
        float: left;
        margin: 5px 2.5%;
    }
}




