@charset "utf-8";

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

#header {
    width: 100%;
    display: flex;
    align-items: center;    
    height:20%
}

#header img {
    height: 80%;
    margin-left:50%;
    transform: translateX(-50%);
}

.contents {
    position: relative;
    width: 100%;
    height: 70%;
    display: flex;
}

.film-fr, .film-en { 
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

iframe, frame,embed {
    width: 100%;
    height: 100%;
} 

.video-fr-iframe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    height: 90%;
}

#copyright {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#copyright p a {
    text-decoration: none;
    color: black;
}

#copyright p a:hover {
    color: gray;
}

@media screen and (max-height: 650px) {
    #header {
        height: 200px;
    }

    #header img {
        height: 150px;
    }
    .contents {
        flex-direction: column;
        height: auto;
    }

    .film-fr, .film-en { 
        width: 100%;
        height: 600px;
    }
}

@media screen and (max-width: 1380px) {
    #header {
        height: 200px;
    }

    #header img {
        height: 150px;
    }
    .contents {
        flex-direction: column;
        height: auto;
    }

    .film-fr, .film-en { 
        width: 100%;
        height: 600px;
    }
}

@media screen and (max-width: 1000px) {
    .film-fr, .film-en { 
        height: 400px;
    }
}

@media screen and (max-width: 670px) {
    .film-fr, .film-en { 
        height: 300px;
    }

    #copyright p {
        text-align: center;
    }

    #header {
        height: 150px;
    }

    #header img {
        height: 120px;
    }
}

@media screen and (max-width: 400px) {
    .film-fr, .film-en { 
        height: 250px;
    }
}