/* Font Face Declarations */
@font-face {
    font-family: 'Realm';
    src: url('./fonts/AT-Realm-Regular.woff2') format('woff2'),
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Terza';
    src: url('./fonts/TerzaReader-Light.woff2') format('woff2'),
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Terza';
    src: url('./fonts/TerzaDisplay-LightItalic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Terza Editor';
    src: url('./fonts/TerzaEditor-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html, body, #content, #content > div {
    box-sizing: border-box;
}

body {
    color: #003545;
    margin: 0;
    padding: 0;
    margin: 0;
    background-color: #fcfbe1;
}

a {
  color: #003545; /* Default color for all links */
}

a:hover {
  color: #000; 
  background-color: #cfc0cd;
  text-decoration: none;
}

#content {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#top,
#middle,
#bottom {
    padding: 10px 50px; /* or whatever spacing you like */
    box-sizing: border-box;
}


#top {
    font-family: 'Terza', sans-serif;
    font-style: italic;
    width: 65%;
    font-size: 2.5em;
    text-align: left;
}

#middle {
    font-family: 'Terza Editor', sans-serif;
    font-size: .9em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    width: 50%;
    margin-left: auto;
    margin-right: 0;
    flex: 1 1 auto;
    margin-top: 3%;
}

#ourFilms {
    flex: 0 0 30%;
    width: 30%;
}

#bottom {
}

#learnMore {
    width: 40%;
    font-family: 'Terza Editor', sans-serif;
    font-size: .9em;
    position: relative;
    top: 40px;
    margin-top: -40px;
}

#copyright {
    font-family: 'Realm', sans-serif;
    font-size: .7em;
    text-transform: uppercase;
    position: relative;
    top: 16%;
    margin: 0;
}

#bottomMobile {
    display: none;
}

#mobileLogoSubhead {
    display: none;
}

@media only screen and (max-width: 600px) {

    #top,
    #middle,
    #bottomMobile, #bottom {
        padding: 5px 20px; /* or whatever spacing you like */
    }

    #bottom {
        order: 1;
    }

    #mobileLogoSubhead {
    display: block;
    font-family: 'terza editor', sans-serif;
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1.3em;
}

    #top {
        order: 2;
        width: 100%;
        font-size: 2.5em;
        margin-top: 150px;
    }


    #middle {
        order: 3;
        width: 100%;
        flex-direction: column;
        font-size: 1em;
        margin-left: 0;
        margin-right: 0;
        flex: auto;
 
        padding-bottom: 100px;
    }

  

       #bottomMobile {
        order: 4;
        display: block;
        height: 300px;
        font-family: 'Terza', sans-serif;
        padding-top: 50px;
        font-size: 1.4em;
    }

    #bottomMobile a {
        font-family: 'terza', sans-serif;
        font-style: italic
    }

     #bottomMobile a:hover {
       background-color: transparent;
    }


    #ourFilms {
        font-family: 'Terza', sans-serif;
        font-size: 2.3em;
        font-style: italic;
        text-transform: none;
        width: 100%;
        flex: auto;
        margin-bottom: 20px;
        margin-top: 100px;
        text-align: right;
    }

    #p2 {
        text-align: right;
        line-height: 2em;
    }


    #learnMore {
        display: none;
        margin: 0;
    }

    #copyright {
        display: none;
        margin: 0;
    }
}

