* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #D0C7B0;
}

/* WHY I LOVE...  */

h1{
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic; 
    color: #405B60;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 20px;
    text-align: center;
}

p{
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    padding-left: 300px;
    padding-right: 300px;
    text-align: center;
}

#stats p{
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #405B60;
}

/* NAV STARTS HERE  */
nav{
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #1D1E1E;
    padding: 14px;
    width: 100%;
    text-align: left;
    position:fixed; 
    text-align: center;
    z-index: 1000;

}

nav a{
    color: #BE5C01;
    text-decoration: underline;
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 14px ;
    font-style: normal;
    padding: 14px;
    text-decoration: none;
}

a{
    color:#BE5C01;
}

a:hover{
    color:#D99100;
}

/* HEADER IMAGE STARTS HERE  */

#headerimg{
    width: 100%;
    display: block;
    margin-bottom: 50px;
    
}

#headerimg img{
    width: 100%;
    display: block;
}

details summary {
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: 18px;
    color: #405B60;
    text-align: center;
    cursor: pointer;
    padding-bottom: 20px;
}

#trailer{
    border: 50px solid #405B60;
    width: 80%;
    margin: 40px auto;
}

#trailer iframe {
    width: 100%;
    height: 600px;
    display: block;
}

#review-section {
    background-color: #1D1E1E;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#review-section p {
    color: #D0C7B0;
}

#review-section h1 {
    color: #D0C7B0;
}

#quote h1{
    font-family: "Libre Baskerville", serif;
    font-style: italic;
    font-size: 20px;
    color: #405B60;  
    text-align: center;
    margin-left: 300px;
    margin-right: 300px;

}

#closingscene{
    border: 50px solid #405B60;
    width: 80%;
    margin: 40px auto;
}

#closingscene iframe {
    width: 100%;
    height: 600px;
    display: block;
}


/* FOOTER STARTS HERE  */

footer {
    background-color: #1D1E1E;
    color: #D0C7B0;
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-size: 13px;
    padding: 20px;
    margin-top: 0; /* removes gap between review and footer */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

footer p {
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-size: 13px;
    padding: 0; /* override the global p padding that was pushing it off-center */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

footer a {
    margin-left: auto;
    text-decoration: none;
}

footer a + a {
    margin-left: 24px;
}

