@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root{
    --bleu : #114357;
    --bleu-clair : #3BBCF0;
    --mauve : #A6787D;
    --rose : #F29992;
}

/*
*
*   BASE
*
*/

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color:black;
}

header{
    background-image:   linear-gradient(to top right, rgba(242, 152, 146, 0.75), rgba(59, 189, 240, 0.75)), 
                        url('img/03-Montre-560x420.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}

main{
    padding: 50px 5px;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    main{
        padding: 50px 100px;
    }
}

footer{
    background-image: linear-gradient(to right, var(--rose), var(--bleu-clair));
    color:white;
}

h1{
    font-size: 3.5rem;
}

h2{
    font-size: 1.4rem;
    font-weight: 700;
}

h3{
    font-size: 1.2rem;
    font-weight: 700;
}

h4{
    font-size: 1.1rem;
    font-weight: 700;
}

a, a:hover, a:visited{
    color: inherit;
    text-decoration: inherit;
}


.font-weight-bold{
    font-weight: 700;
}

.font-weight-bolder{
    font-weight: 900;
}

.rounded-decouvrir{
    border-radius: 20px;
}

.rounded-lg{
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/*
*
*   HEADER
*
*/

#titre p{
    font-size: 1.4rem;
}

#logofitbit{
    width: 120px;
}

#header-border{
    height: 20px;
}

header.rounded-header{
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}


/*
*
*   MAIN
*
*/

.vignette img{
    position: absolute;
    width: 200px;
    top: 25px;
    left: 25px;
}

.degrade-sous-img{
    background-image: linear-gradient(to bottom, var(--mauve), var(--rose));
    width: 50px;
    height: 200px;
    border-top-left-radius: 10px;
    margin-bottom: 25px;
    margin-right: 200px;
}


#fonctionnalités div:first-of-type{
    margin: 40px auto;
}

#couleur-soustitre{
    height: 30px;
    width: 50%;
    position: absolute;
    left: 35%;
    top: -22px;
    background-color: var(--rose);
    border-radius: 20px;
}
#couleur-soustitre::after{
    content: "";
    opacity: 0.7;
    height: 30px;
    width: 35%;
    position: absolute;
    left: 75%;
    top: 20px;
    background-color: var(--bleu);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}



#presentation h2{
    color: var(--rose);
}

#presentation img{
    width: 50px;
    margin-bottom: 20px;
}

#applicationMobile{
    margin-top: 100px;
}

#applicationMobile h2{
    color: var(--rose);
}

.telecharger{
    color: white;
    background-color: var(--rose);
}

#imgAppli{
    margin-top: -100px;
    width: 150px;
}


