/*************************************************
    BOOTSTRAP 3 MEDIA QUERIES only for Nikola Tesla 
**************************************************/

/*Large devices ≥1200px (Destop and Laptops)*/
@media(min-width: 1200px) {
    p.tesla {
    color:#fff;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin-right: 225px;
    margin-top: 20px;
    
}
    }

/*Medium devices ≥992px landscape Tablets and medium Desktops */
@media(min-width: 992px) and (max-width: 1199px) {
    p.tesla {
    color:#fff;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin-right: 145px;
    margin-top: 20px;
    
}
    
}

/*Small devices ≥768px Portrait Tablets & Small Desktop*/
@media (min-width: 768px) and (max-width: 991px) {
     p.tesla {
    color:#fff;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin-right: 100px;
    margin-top: 15px;
    
}
    
    
}

/*Extra Small devices <768px landscape Phones & Portrait Tablets*/

@media (max-width: 767px) {
    p.tesla {
    color:#fff;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin-right: 50px;
    margin-top: 20px;
    
}
    
}

/*Extra Small devices <480px Portrait Phones & Smaller Devices*/
@media (max-width: 480px) {
    
}