@font-face {
    font-family: Plain;
    src: "assets/font/Plain-Regular.otf";
}

a {
    text-decoration: none;
    color: black;
}

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: Plain, Helvetica, Arial, sans-serif;
    background: white;
}

#model {
    z-index: -1;
}

#logo {
    position: fixed;
    top: 0;
    right: 0;
    width: 20vw;
    height: auto;
    z-index: 999;
    mix-blend-mode: difference;
    font-weight: 100;
    font-family: Plain, Helvetica, Arial, sans-serif;
}

#film_title {
    position: fixed;
    margin: 0;
    color: white;
    top: 0;
    left: 0;
    font-size: 3rem;
    line-height: 3rem;
    height: auto;
    z-index: 999;
    mix-blend-mode: difference;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    transition: height 0.5s ease-out;
    background: white;
    box-shadow: 0 0 10px grey;
    overflow: hidden;
}

.hide {
    height: 0px !important;
}

footer span {
    cursor: pointer;
}

footer > span:hover, .submenu > span:hover {
    text-decoration: underline;
}

footer > span {
    padding: 0 40px;
    position: relative;
    padding-top: 13px;
}

footer > span, .submenu {
    display: flex;
    flex-direction: column;
}

.submenu {
    position: absolute;
    top: 50px;
    left: 0;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    background: white;
}

#poster {
    max-width: 80vw;
    max-height: 80vh;
    margin-top: 4rem;
}

.info, .emailForm {
    width: calc(100vw - 60px);
    font-family: Plain, Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    margin-bottom: 50px;
}

.large {
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 15px;
}

.emailForm{
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.emailForm input {
    margin-bottom: 35px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    width: 40vw;
}

.emailForm textarea {
    margin-bottom: 35px;
    width: 50vw;
    height: 20vw;
}

.contactTitle {
    font-size: 3rem;
    line-height: 3rem;
}

.large {
    width:40vw;
}

@media (max-width: 680px) {
    .submenu {
        left: 25px;
        white-space: nowrap;
    }

    #logo {
        left: 0;
        right: auto;
        width: auto;
        height: 3rem;
    }

    #film_title {
        top: 3rem;
    }

    #poster {
        margin-top: 7rem;
    }

    .large {
        width:100%;
    }

    .emailForm input, .emailForm textarea {
        width: 100%;
    }
}