/*
    Extra small devices (portrait phones, less than 576px)
    No media query since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    #accueil .subtitle{
        width:50%;
        font-size:20px;
        padding:6px 16px;
        text-align:right;
    }
    #accueil .subtitle i{
        font-size:16px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #accueil h2{
        font-size:20px;
    }
    #accueil h1{
        font-size:100px;
    }

    #presentation aside img{
        height:500px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    #nav .nav-item:not(:last-child):before{
        content:'//';
        color:#dadada;
        display:block;
        position:absolute;
        left:calc(100% - 10px);
        top:calc((100% - 20px) / 2);
        width:20px;
        height:20px;
        line-height:20px;
        text-align:center;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #accueil h2{
        font-size:30px;
    }
    #accueil h1{
        font-size:160px;
    }

    #presentation h3{
        font-size:30px;
    }
}
