@font-face {
    font-family: 'Cormorant';
    src: url('../../../film/static/film/fonts/Cormorant-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'Cormorant';
    src: url('../../../film/static/film/fonts/CormorantGaramond-Italic.woff2') format('woff2');
    font-style: italic;
    font-weight: 400;
    font-feature-settings: "ss07", "ss08";
}
@font-face {
    font-family: 'Cruz Quaste';
    src: url('CruzQuaste.ttf');
}

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

body {
    background-image: url("bg.jpg");
    background-position: center;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

header {
    font-family: 'Cruz Quaste';
    font-size: xx-large;
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 1em 0;
    text-align: center;
}

section {
    width: 40%;
    border: 1px solid;
    margin-bottom: 10vh;
    background-color: white;
    padding: 1em;
    text-align: center;
}

.link {
    display: contents;
    text-decoration: none;
    color:inherit;
}

section#film {
    font-family: 'Cormorant';
    font-style: italic;
}

section > p {
    margin-top: 1em;
}

footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5em;
}

footer > p {
    margin-left: .5em;
}