@import url('https://fonts.googleapis.com/css?family=PT+Sans');
@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru');

@media screen {
    
    
    body{
        font-family: 'PT Sans', sans-serif !important;

    }

    /* Login */

    .login{
        width: 30%; margin: 10% auto; background-color: #f0f0f0; padding: 20px; border-radius: 3px; border: 1px solid grey;
    }
    /* Fonts */
    
    .btn-default{
        font-size: 10px !important;
    }
    
    .btn-success{
        background-color: #000;
        color: #FFF;
    }
    
    .bg-dark{
        background-color: #000 !important;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        color: #FFF !important;
    }


    h1{
        font-size: 25px !important;
        font-weight: bold;
        margin-bottom: 30px;
    }
    
    
    h2{
        font-size: 20px !important;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .wrapper{
        max-width: 90%;
        margin: 0 auto;
    }

    .navigation{
        float: left;
        width: 100%;
        background-color: black;
        color: #FFF;
        padding: 10px 0;
    }

    .navigation ul{
        float: left;
        width: 90%;
    }

    .navigation ul li{
        float: left;
    }

    .navigation ul li a{
        text-decoration: none;
        color: #FFF;
        margin-right: 30px;
    }

    .content{
        float: left;
        width: 100%;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
}

@media only screen and (max-width: 1040px) {
    .login{
        width: 90%; margin: 10% auto; background-color: #f0f0f0; padding: 20px; border-radius: 3px; border: 1px solid grey;
    }
    
    .wrapper{
        max-width: 90%;
        margin: 0 auto;
    }
    
}