/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, p, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, p, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ====================== */
/* == END OF CSS RESET == */
/* ====================== */

/* ============================================ */

/* ================================= */
/* == START OF MY OWN STYLE RULES == */
/* ================================= */

/* DEFAULT STYLE rules */
* {
	box-sizing: border-box;
}

body {
    background-image: url(./assets/indianWeddingBackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Poltawski Nowy","Kalnia", "Simonetta", "Gabriela", serif;
}

p {
    line-height: 1.7em;
}
#home-page, #venue_and_tickets, #film_synopsis{
    max-width:900px;
    margin-left: auto;
    margin-right: auto;
}
h1{
    font-family:"Waterfall", "Updock", "Love Light", cursive;
    font-size: 8em;
    text-align: center;
    margin-top: 0.5em;
    font-weight: 600;
}

h2{
    margin-top: 1em;
    font-family: "Lancelot", "Berkshire Swash", "Elsie Swash Caps", serif;
    font-size: 4em;
}


/* ====================== */
/* == Navigation / Header and Footer== */
/* ====================== */
nav{
    display: block;
}

header nav ul, footer ul{
    display: flex;
    justify-content: center;
    padding-top: 1em;
}
header nav ul li {
    margin: 0 2.75em 0;
}
header nav ul{
    font-size: 1.4em;
    font-weight: bolder;
}

/*  footer  */
footer {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    background-color: #daa520;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

footer div:nth-of-type(1) div:nth-of-type(1) ul{
    display: flex;
	flex-direction: row;
    line-height: 1.5em;
    margin-bottom: 1em;
}
footer div:nth-of-type(1) div:nth-of-type(1) ul li a{
    margin-left: 1em;
    margin-right: 1em;
    font-size: 1.2em;
    padding-left: 1.2em;
    padding-right: 1.2em;
}
footer h3{
    font-weight: bolder;
}
footer address{
    line-height: 1.5em;
    margin-top: 0.5em;
}
footer address + p{
    margin-bottom: 1em;
}
footer > div:first-of-type > div > address{
    font-size: 1em;
}

/* ====================== */
/* == Links == */
/* ====================== */

/*header and nav link styles */
header nav ul li a{
    text-decoration: none;
    color: #500101;
    border-radius: 2em;
    background-color: #daa520;
    padding: 0.4em;
    font-style: normal;
    border-style: dotted;
    border-color: #500101;
    border-width: 0.1em;
    cursor:pointer;
}

header nav ul li a:hover{
    color: #daa520;
    background-color: #500101;
    border-color: #daa520;
    text-decoration: none;

}
header nav ul li a:active{
    text-decoration: underline;
    color: #fff;
    background-color: #500101;
}
header nav ul li a:focus{
    color: #EFE3C3;
    background-color: #000;
    border-color: #EFE3C3;
}
header nav ul li a:visited{
    color: teal;
}

/*  figure figcaption links and production/direction link styles  */
figure figcaption a, main > div > section:last-child ul a{
    text-decoration: none;
    color: #500101;
    font-style: italic;
    cursor:pointer;
    border-radius: 0.3em;
}
figure figcaption a:hover, main > div > section:last-child ul a:hover{
    font-weight: 700;
    text-decoration: underline;
}
figure figcaption a:active, main > div > section:last-child ul a:active{
    color: #fff;

}
figure figcaption a:focus, main > div > section:last-child ul a:focus{
    color: #daa520;
    background-color: #500101;
}
figure figcaption a:visited, main > div > section:last-child ul a:visited{
    color: teal;
}

/*  footer link styles  */
footer ul li a{
    color: #500101;
    text-decoration: none;
}
footer ul li a:active{
    color: #fff;
}
footer ul li a:hover{
    font-weight: bolder;
}
footer ul li a:focus{
    color: #EFE3C3;
    background-color: #000;
}
footer ul li a:visited{
    color: teal;
}


/* homepage buy tickets button link styles  */
main section:nth-of-type(2) div a{
    color: #500101;
    text-decoration: none;
}
main section:nth-of-type(2) div a:hover{
    font-weight: bolder;
    background-color: #500101;
    color: #daa520;
    font-size: 2.2em;
}
main section:nth-of-type(2) div a:active{
    color: #fff;
}

main section:nth-of-type(2) div a:focus{
    color: #EFE3C3;
    background-color: #000;
}
main section:nth-of-type(2) div a:visited{
    color: teal;
}


/*   venue and tickets page - showtimes button link styles   */
#showtimes a{
    color: #500101;
    text-decoration: none;
    padding: 2em 2em 2em 2em;
    background-color: #daa520;
    border-radius: 1em;
}
#showtimes a:hover{
    color: #daa520;
    background-color: #500101;
}
#showtimes a:focus{
    color: #EFE3C3;
    background-color: #000;

}
#showtimes a:active{
    color: #fff;
}
#showtimes a:visited{
    color: teal;

}
#showtimes ul li{
    padding: 2em 3em 2em 3em;
}

/* buy ticket button on the venue and tickets page after the ticket prices section */

main > section:nth-of-type(2) + a:hover{
    font-weight: bolder;
    background-color: #500101;
    color: #daa520;
    font-size: 2.2em;
}
main > section:nth-of-type(2) + a:active{
    color: #fff;
}
main > section:nth-of-type(2) + a:focus{
    color: #EFE3C3;
    background-color: #000;
}
main > section:nth-of-type(2) + a:visited{
    color: teal;
}


footer p a:last-of-type{
    color: #500101;
    text-decoration: none;
}
footer p a:last-of-type:hover{
    font-weight: bolder;
    text-decoration: double underline;
}

/*  about Genesis on venue and tickets page  */
#about p a{
    color: #500101;
    text-decoration: none;
}
#about p a:hover{
    color: #daa520;
    background-color: #500101;
    padding: 0.25em;
    border-radius: 1em;
}
#about p a:focus{
    color: #EFE3C3;
    background-color: #000;
}
#about p a:active{
    color: #fff;
}
#about p a:visited{
    color: teal;
}



/* ====================== */
/* == HomePage == */
/* ====================== */

/*  homepage main  */

main > section:nth-child(2) div p {
    font-size: 1.45em;
    margin-left: 1.5em;
    margin-right: 1.5em;
    
}
main > section:nth-child(2) div p span {
   font-weight: 700;
   font-style: italic;
}
main > section:nth-child(2) div p:nth-child(1){
    background-color: rgba(218, 165, 32, 0.439);
    
    padding: 1em;
    margin-top: 2em;
    box-shadow: rgba(218, 165, 32, 0.4) 0px 2px 4px, rgba(218, 165, 32, 0.3) 0px 7px 13px -3px, rgba(218, 165, 32, 0.2) 0px -3px 0px inset;
}
main > section:nth-child(2) div p:nth-child(2) {
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-weight: 700;
    text-align: center;
}

main > section:nth-child(2) div a {
    font-size: 2em;
    margin: 1.2em auto 0;
    width: 10em;
    padding: 1.1em;
    display: block;
    border-radius: 1.5em;
    text-align: center;
    background-color: #daa520;
}
main > section:nth-child(2) + img {
    display: block;
    margin: 5em auto 6em auto;

}

  
/*  homepage main -- cast section  */
#cast{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 1.2rem;
    justify-content: center;
}
#cast h2{
    grid-column: 1 / -1;
    place-self: center;
    margin-bottom: 0.5em;
    font-weight: 600;
}
#cast figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#cast figure img{
    border-radius: 1em;
    box-shadow: 0px 0px 0px 5px #500101,
    0px 0px 0px 10px #50010166,
    0px 0px 0px 15px #50010133,
    0px 0px 0px 20px #5001011a;
}
#cast figcaption {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.25em;
}

/*   homepage main  -- direction and production section   */
#cast ~ section h2 {
    text-align: center;
    font-weight: 600;
}
#cast ~ section ul{
    font-size: 1.45em;
    padding: 0.25em;
    margin-top:1em;
    margin-left: 3em;
    margin-right: 3em;
    line-height: 1.6em;
    margin-bottom: 4em;
    box-shadow: rgba(218, 165, 32, 0.5) 0px 1px 2px 0px, rgba(218, 165, 32, 0.25) 0px 1px 3px 1px;
}
#cast ~ section ul li span{
    font-weight: 500;

}


/* ====================== */
/* == Venue & Tickets page == */
/* ====================== */

.tickets h1{
    font-family:"Updock", "Love Light", "Waterfall", cursive;
    font-size: 7em;
    text-align: center;
    margin-top: 0.5em;
    font-weight: 600;
}
#venue_and_tickets main{
    text-align: center;
}
main > section:first-child img.film-poster{
    display: block;
    margin: 3em auto 2em auto;
    box-shadow: 0px 0px 0px 5px #500101,
    0px 0px 0px 10px #50010166,
    0px 0px 0px 15px #50010133,
    0px 0px 0px 20px #5001011a;
}
main > section:first-child > p,
main > section:first-child > p img{
    display: flex; 
    flex-direction: column;
    align-items: center;
}
main > section:first-child > p img{
    cursor: zoom-in;
}

main > section:first-child span {
    font-weight: bold;
}

main > section:first-child h2 {
    margin-bottom:0.5em;
    margin-top: 2em;
    font-weight:600;
}

/*  venue and tickets - showtimes section  */
#showtimes h3{
    font-size: 1.75em;
    margin-bottom: 1em;
    margin-top: 2em;
    font-weight: 600;
}
#showtimes ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 1.3em;
}

/*   venue and tickets page -- ticket prices secion    */
main > section:nth-child(2) h2{
    font-weight: 600;
    margin-bottom: 0.5em;
    margin-top: 2em;
}

main > section:nth-child(2) h3 {
    font-size: 1.75em;
    font-weight: 500;
    margin-bottom: 0.25em;
    margin-top: 1.25em;
}

main > section:nth-child(2) ul p {
    font-size: 1.45em;
    margin-bottom: 0.25em;
}

main > section:nth-child(2) ul span{
    font-size: 1.3em;
}
main > section:nth-of-type(2) > ul:first-of-type{
    margin-bottom: 4em;
}

/*   venue and tickets page - buttons styling   */
main > section:nth-child(2) ul button{
    padding: 0.5em;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

main > section:nth-of-type(2) + a{
    font-size: 2em;
    text-decoration: none;
    color: #500101;
    padding: 1.1em;
    background-color: #daa520;
    border-radius: 1.5em;
}

/* peacock gif  */
main > section:nth-of-type(2) + a + img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10em;
}

/* About Genesis section  */
#about h2{
    font-weight: 600;
    margin-bottom: 0.5em;
    margin-top: 2em;
}

#about img{
    display: inline;
    margin: 1em 1.5em 1em 1.5em;
    
    border-radius: 2em;
    box-shadow: 0px 0px 0px 5px #500101,
    0px 0px 0px 10px #50010166,
    0px 0px 0px 15px #50010133,
    0px 0px 0px 20px #5001011a;
}

#about img + p{
    text-align: left;
    margin-top: 1.3em;
    background-color: rgba(218, 165, 32, 0.439);
    padding: 1em;
    line-height: 1.7em;
    font-size: 1.45em;
    margin-left: 1.5em;
    margin-right: 1.5em;
    box-shadow: rgba(218, 165, 32, 0.4) 0px 2px 4px, rgba(218, 165, 32, 0.3) 0px 7px 13px -3px, rgba(218, 165, 32, 0.2) 0px -3px 0px inset;
}

/* location section  */
div:nth-of-type(2) h2{
    font-weight: 600;
    margin-bottom: 0.2em;
    margin-top: 2em;
}

#about + div + h2{
    font-size: 1.75em;
}

div:nth-of-type(2) address{
    margin-bottom: 0.5em;
    font-size: 1.45em;
}

/* transport section */
#transport h2{
    font-weight: 600;
    margin-bottom: 0.2em;
    margin-top: 2em;
}

#transport div{
    margin-top: 1.3em;
    align-items: left;
    background-color: rgba(218, 165, 32, 0.439);
    padding: 1em;
    line-height: 1.5em;
    font-size: 1.45em;
    margin-left: 1.5em;
    margin-right: 1.5em;
    margin-bottom: 4em;
    box-shadow: rgba(218, 165, 32, 0.4) 0px 2px 4px, rgba(218, 165, 32, 0.3) 0px 7px 13px -3px, rgba(218, 165, 32, 0.2) 0px -3px 0px inset;
}
#transport div h3, #transport div p, #transport div ul{
    text-align: left;
}

#transport div h3{
    font-weight: 700;
    margin-bottom: 0.25em;
    margin-top: 0.2em;
    font-size: 1.15em;
}


#transport div ul{
    margin-top: 0.3em;
    margin-bottom: 1em;
}

#transport div p {
    margin-bottom: 0em;
}


/* film synopsis page */

main div img{
   display: block;
   margin: 3em auto 0 auto;
   

}

main div:nth-of-type(1) h1 + img +p{
    margin-top: 2em;
    align-items: left;
    background-color: rgba(218, 165, 32, 0.439);
    padding: 1em;
    line-height: 1.5em;
    font-size: 1.45em;
    margin-left: 1.5em;
    margin-right: 1.5em;
    margin-bottom: 4em;
    box-shadow: rgba(218, 165, 32, 0.4) 0px 2px 4px, rgba(218, 165, 32, 0.3) 0px 7px 13px -3px, rgba(218, 165, 32, 0.2) 0px -3px 0px inset;
}
main div:nth-of-type(2) h2{
    text-align: center;
    font-weight: bolder;
}

div:nth-child(2) video {
    display: block;
    margin: 0 auto;
}

main div:nth-of-type(3) p{
    margin-top: 2em;
    align-items: left;
    background-color: rgba(218, 165, 32, 0.439);
    padding: 1em;
    line-height: 1.5em;
    font-size: 1.45em;
    margin-left: 1.5em;
    margin-right: 1.5em;
    margin-bottom: 2em;
    box-shadow: rgba(218, 165, 32, 0.4) 0px 2px 4px, rgba(218, 165, 32, 0.3) 0px 7px 13px -3px, rgba(218, 165, 32, 0.2) 0px -3px 0px inset;
}

/* ====================== */
/* == MEDIA QUERIES == */
/* ====================== */

@media (min-width:460px){
    body{
        background-image: url(./assets/indianWeddingBackground.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center; 
    }
    header nav ul li {
        margin: 1em 2em 1em;
    }
    header nav ul{
        font-size: 1.1em;
        flex-direction: column;
        text-align: center;
        margin: 0 auto 0 auto;
    }
    nav{
        display: flex;
        
    }
    /* homepage */
    main section:nth-of-type(1) h1 + img{
        width: 455px;
        height: 202px;
        
    }
    main > section:nth-child(2) + img{
        width: 340px;
        height: 170px;
        margin: 3em auto 3em auto;
    }
    h1{
        margin-top: 0.4em;
        font-size: 6.5em;
    }
    main > section:nth-child(2) div p{
        font-size: 1.15em;
        margin-left: 1.6em;
        margin-right: 1.6em;
    }

    h2{
        font-size: 2.9em;
        margin-top: 0.75em;
    }

    #cast{
        grid-gap: 0.2em;
    }
    #cast figcaption{
        font-size: 1em;
        margin-bottom: 0.5em;
    }

    main div img {
        margin: 2em auto 0 auto;
    }
    #cast figure img {
        width: 120px;
        height: 120px;
    }

    #cast ~ section h2{
        margin-top: 1.2em;
        margin-bottom: 1em;
    }
    #cast ~ section ul{
        font-size: 1.1em;
        margin: 1em 3em 4em 3em;
    }
    /* venue and tickets page */

    main > section:first-child img.film-poster{
        width: 325px;
        height: 433px;
    }

    main > section:first-child h2{
        margin-top: 1.2em;
    }

    main > section:nth-of-type(2) + a + img {
        width: 400px;
        height: 200px;
    }
    main > section:first-child > p{
        font-size: 1.25em;
    }
    #showtimes h3{
        font-size: 1.5em;
        margin-bottom: 1.5em;
    }
    #showtimes ul{
        font-size: 1.1em;
    }
    #showtimes ul li{
        padding: 1em 1.25em 1em 1.25em;
    }
    #showtimes a{
        padding: 1.25em 1.25em 1.25em 1.25em;
    }
    
    main > section:nth-child(2) h3{
        font-size: 1.5em;
        font-weight: 700;
    }
    main > section:nth-child(2) ul p {
        font-size: 1.3em;
    }

    #about img{
        width: 170px;
        height: 170px;
    }
    #about img + p {
        font-size: 1.15em;
        margin-left: 1.6em;
        margin-right: 1.6em;
    }
    div:nth-of-type(2) address, #transport div {
        font-size: 1.2em;
    }

    iframe{
        width: 380px;
        height: 244px;
    }

    /* film synopsis page */
    main div img {
        width: 430px;
        height: 321px;
    }
    main div:nth-of-type(1) h1 + img +p {
        font-size: 1.15em;
        margin-left: 1.6em;
        margin-right: 1.6em;
    }
    div:nth-child(2) video{
        width: 380px;
        height: 211px;
    }

    main div:nth-of-type(3) p {
        font-size: 1.15em;
        margin-left: 1.6em;
        margin-right: 1.6em;
    }
    /*footer*/

    footer div:nth-of-type(1) div:nth-of-type(1) ul{
        flex-direction: column;
        text-align: center;
        margin: 0 auto 0.75em auto;
    }
}

@media (min-width:550px){
    header nav ul{
        font-size: 1.2em;
        flex-direction: column;
        text-align: center;
        margin: 0 auto 0 auto;
    }
    h1{
        font-size: 7.3em;
    }
    main section:nth-of-type(1) h1 + img{
        width: 540px;
        height: 239px;
    }

    main > section:nth-child(2) div p {
        padding: 0.5em;
        margin-left: 2.75em;
        margin-right: 2.75em;
    }

    main > section:nth-child(2) div p:nth-child(2) {
        font-size:1.3em ;
    }

    main > section:nth-child(2) + img{
        width: 400px;
        height: 200px;
    }

    #cast h2{
        font-size: 3.5em;
    }
    #cast figure img{
        width: 130px;
        height: 130px;
    }
    #cast{
        margin-left: 3em;
        margin-right: 3em;
    }
    #cast figcaption{
        font-size: 1.15em;
        
    }
    #cast ~ section h2{
        font-size: 3.3em;
    }
    #cast ~ section h2{
        margin-top: 1.2em;
        margin-bottom: 0.5em;
    }
    #cast ~ section ul{
        margin: 1em 3.5em 4em 3.5em;
    }

    /* venue and tickets page */
    main > section:first-child h2{
        font-size: 3.2em;
    }
    #showtimes ul{
        font-size: 1.3em;
    }
    main > section:nth-child(2) h2{
        font-size: 3.2em;
    }

    main > section:nth-of-type(2) > ul:first-of-type{
        margin-bottom: 6em;
    }
    #about h2{
        font-size: 3.2em;
    }
    #about img{
        width: 180px;
        height: 180px;
    }
    #about img + p {
        margin-left: 2.8em;
        margin-right: 2.8em;
    }

    main div:nth-of-type(2) h2 {
        font-size: 3.2em;
    }
    div:nth-of-type(2) address{
        margin-bottom: 1em;
    }

    #transport h2{
        font-size: 3.2em;
    }
    #transport div{
        margin-left: 2.8em;
        margin-right: 2.8em;
    }

    /* film synopsis */
    main div:nth-of-type(1) h1 + img +p{
        margin-left: 2.8em;
        margin-right: 2.8em;
        
    }

    div:nth-child(2) video{
        width: 410px;
        height: 228px;
    }
    main div:nth-of-type(3) p{
        margin-left: 2.8em;
        margin-right: 2.8em;
    }
}

@media (min-width: 675px){
    header nav ul{
        flex-direction: row;
        font-size: 1.1em;
    }

    header nav ul li{
        margin: 1em 1em 1em;
    }

    h1{
        font-size: 6em;
    }
    main section:nth-of-type(1) h1 + img{
        width: 620px;
        height: 274px;
        
    }
    main > section:nth-child(2) div p{
        margin-left: 6em;
        margin-right: 6em;
        font-size: 1.15em;
    }
    #cast{
        margin-left: 6em;
        margin-right: 6em;
    }
    #cast figcaption{
        margin-left: 0.5em;
        margin-right: 0.5em;
    }
    #cast ~ section ul{
        margin: 1em 7em 1em 7em;
        font-size: 1.15em;
    }

    /*venue and tickets page*/
    main > section:first-child img.film-poster {
        width: 300px;
        height: 400px;
    }
    main > section:first-child > p {
        font-size: 0.9em;
    }
    main > section:first-child h2{
        font-size: 2.4em;
    }
    #showtimes h3{
        font-size: 1.2em;
    }
    #showtimes ul{
        font-size: 1.1em;
    }
    main > section:nth-child(2) h2 {
        font-size: 2.4em;
    }

    main > section:nth-child(2) h3{
        font-size: 1.2em;
    }
    main > section:nth-child(2) ul p{
        font-size: 1.15em;
    }
    main > section:nth-child(2) ul button {
        padding: 0.3em;
    }
    main > section:nth-child(2) ul span {
        font-size: 1.1em;
    }
    #about img + p {
        font-size: 1.15em;
        margin-left: 6.1em;
        margin-right: 6.1em;
    }
    #about h2{
        font-size: 2.9em;
    }
    main div:nth-of-type(2) h2{
        font-size: 2.4em;
    }
    div:nth-of-type(2) address{
        font-size: 1em;
    }
    #transport h2{
        font-size: 2.4em;
    }
    #transport div{
        font-size: 1.15em;
        margin-left: 6.1em;
        margin-right: 6.1em;
    }
}

@media (min-width:820px){
    header nav ul{
        font-size: 1.3em;
        
    }
    h1{
        font-size: 6.5em;
    }
    main section:nth-of-type(1) h1 + img{
        width: 775px;
        height: 343px;
    }
    #cast {
        margin-left: 5em;
    }
    #cast ~ section ul{
        margin-bottom: 3em;
    }
    #about img{
        width: 200px;
        height: 200px;
    }

    #showtimes ul{
        font-size: 1.25em;
        
    }
    #showtimes a{
        padding: 1.25em 2em 1.25em 2em;
    }

    main div:nth-of-type(1) h1 + img +p{
        margin-left: 4.2em;
        margin-right: 4.2em;
        
    }
    main div:nth-of-type(3) p{
        margin-left: 4.2em;
        margin-right: 4.2em;
    }

    div:nth-child(2) video{
        width: 625px;
        height: 347px;
    }

}

@media (min-width:1100px){
    header nav ul{
        font-size: 1.4  em;
        
    }
    h1{
        font-size: 6.9em;
    }
    main section:nth-of-type(1) h1 + img{
        width: 850px;
        height: 376px;
    }

    #cast {
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
        margin-left: 5em;
        margin-right: 5em;
    }

    main > section:first-child img.film-poster{
        width: 450px;
        height: 600px;
    }
    #about img{
        width: 300px;
        height: 300px;
    }
    iframe{
        width: 500px;
        height: 321px;

    }

    #venue_and_tickets h1, #film_synopsis h1{
        font-size: 8em;
    }
    main div img{
        width: 470px;
        height: 351px;
    }

}


