    @font-face {
        font-family: helveticamd;
        src: url(helveticaneuemd.woff) format("woff");
    }
    
    @font-face {
        font-family: timesnr;
        src: url(times.woff) format("woff");
    }
    
     :root {
        --gris: #9a9ea5;
        --vert: #009497;
        --rouge: #c02d50;
        --bleu: #006aaf
    }
    
    * {
        box-sizing: border-box;
        margin: 0px;
        padding: 0px;
        border: 0px;
        padding: 0px;
        color: black;
    }
    
    .gradientDown {
        position: absolute;
        z-index: 0;
        height: 300px;
        background: rgb(154, 158, 165);
        background: linear-gradient(180deg, rgba(154, 158, 165, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    
    .gradientUp {
        margin-top: 200px;
        position: absolute;
        z-index: 0;
        height: 300px;
        background: rgb(154, 158, 165);
        background: linear-gradient(1800deg, rgba(154, 158, 165, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    
    .blobBox {
        background-color: #fff;
        font-family: helveticamd;
        display: block;
        margin-left: 10vw;
        margin-top: 50px;
        padding: 20px;
        border-color: var(--gris);
        border-width: 2px;
        border-style: solid;
    }
    
    .content {
        z-index: 5;
        top: 50vh;
        padding-right: 30vw;
        padding-left: 30vw;
    }
    
    .bandcamp {
        border: 0;
        width: 100%;
        height: calc(40vw + 110px);
    }
    
    .bandcamp,
    .video-container {
        margin-bottom: 30px;
    }
    
    .borderBottom {
        border-bottom-color: var(--gris);
        border-bottom-width: 2px;
        border-bottom-style: solid;
        margin-bottom: 40px;
    }
    
    .relative {
        position: relative;
    }
    
    .txtFloating {
        margin-left: 5vw;
        margin-top: 50px;
        padding: 20px;
        position: absolute;
        z-index: 11;
    }
    
    .dwindled {
        width: 40%;
    }
    
    .prevLink {
        z-index: 11;
        width: 25%;
        left: 10vw;
        margin-left: 0;
        margin-top: 0;
        top: 75vh;
    }
    
    .nextLink {
        width: 25%;
        right: 10vw;
        margin-left: 0;
        margin-top: 0;
    }
    
    .w100 {
        width: 100%;
    }
    
    .radius {
        border-radius: 15px;
    }
    
    .dropShadow {
        -moz-box-shadow: -10px 8px 10px 0p var(--gris);
        -webkit-box-shadow: -10px 8px 10px 0px var(--gris);
    }
    
    .absolute {
        z-index: 10;
        position: absolute;
    }
    
    .flex {
        display: flex;
        flex-flow: row wrap;
    }
    
    .footer {
        margin-left: 6vw;
        margin-top: 650px;
        position: absolute;
        z-index: 0;
        height: 50px;
    }
    
    #sommaire {
        margin-top: 200px;
    }
    /* Youtube responsive */
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
    }
    
    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    /* TEXTE */
    
    a {
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    h1 {
        font-weight: normal;
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
    }
    
    h2 {
        font-weight: normal;
        font-size: 25px;
        font-family: 'Times New Roman', Times, serif;
    }
    
    h3 {
        font-size: x-large;
        font-weight: normal;
        margin-bottom: 20px;
    }
    
    h4 {
        font-size: large;
        font-weight: normal;
        margin-bottom: 10px;
    }
    
    .padTop {
        padding-top: 15px;
    }
    
    .titre {
        font-family: helveticamd;
        margin-bottom: 10px;
    }
    
    .artist {
        color: var(--vert);
    }
    
    .album {
        color: var(--rouge)
    }
    
    .morceau {
        color: var(--bleu);
    }
    /*  RESPONSIVE  */
    
    @media only screen and (max-width: 750px) {
        .dwindled {
            width: 80vw;
        }
        h1 {
            font-size: 30px;
        }
        h3 {
            font-size: 20px;
        }
        a {
            text-decoration: underline;
        }
        .content {
            padding-right: 20px;
            padding-left: 20px;
        }
        .bandcamp {
            border: 0;
            width: calc(100vw - 40px);
            height: calc(100vw + 78px)
        }
        .bandcamp,
        .video-container {
            margin-bottom: 30px;
        }
        .prevLink {
            width: 80vw;
            padding-top: 10px;
            padding-bottom: 10px;
            top: 25vh;
        }
        .nextLink {
            width: 80vw;
            padding-top: 10px;
            padding-bottom: 10px;
            margin-top: 350px;
        }
        .footer {
            margin-top: 450px;
        }
    }