@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');

@font-face {
    font-family: 'cardenio_modernbold';
    src: url('../Typo/cardenio_modern_bold-webfont.woff2') format('woff2'),
         url('../Typo/cardenio_modern_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cardenio_modernregular';
    src: url('../Typo/cardenio_modern_std-webfont.woff2') format('woff2'),
         url('../Typo/cardenio_modern_std-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'the_heart_maze_demoregular';
    src: url('../Typo/the_heart_maze_demo-webfont.woff2') format('woff2'),
         url('../Typo/the_heart_maze_demo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-pink: #ff8a96;
    --color-grey-light-1: #ddd;
    --color-grey-light-2: #ccc;
    --color-grey-medium: #bbb;
    --color-grey-dark: #333;
}

/* **********************************
        MOBILES
*************************************/

html,
body {
    font-family: Roboto, sans-serif;
    font-size: 52.5%;
}

#logoHeader {
    max-height: 100px;
    position: fixed;
    top: 20px;
    left: 20px;
}

a {
    text-decoration: none !important;
}

a.navbar-brand img {
    max-height: 30px;
}

/* NAVBAR */

.navbar {
    padding: 1rem 4rem;
    background-color: white;
}

.navbar-brand {
    font-size: 2rem;
}

.nav-link {
    font-size: 1.4rem;
    margin-left: 1.5rem;
    color: #ff8a96 !important;
    text-transform: uppercase;
    font-family: 'cardenio_modernbold';
}

.container-fluid {
    margin-top: 55px;
}

.titre {
    margin-top: 55px;
    margin-left: 0;
}

.titre h1 {
    text-transform: uppercase;
    font-size: 5rem;
    color: #ff8a96;
    font-family: 'cardenio_modernregular';
    margin-bottom: 25px;
}

.titre p {
    font-size: 1.8rem;
    margin-bottom: 50px;
    padding: 0 50px;
}

.titre a {
    text-decoration: none;
    color: #ff8a96;
    font-family: 'cardenio_modernbold';
}

.book-title {
    font-style: italic;
    color: #ff8a96;
}

.software {
    color: #ff8a96;
}

.copyright {
    font-size: 1.6rem;
}

video {
    width: 100%;
}

.video-text {
    display: flex;
    justify-content:center;
    align-items:center;
    text-align: center;
    font-size: 2rem;
}

.video-text p {
    padding: 10px 15px;
}

.showAbove768 {
    display: flex;
}

.showUnder768 {
    display: none;
}

@media (max-width: 767px) {
    .showAbove768 {
        display: none;
    }

    .showUnder768 {
        display: flex;
    }
}