body {
/*    font-family: Arvo, serif;*/
    background-color: rgb(51, 51, 51);
    border-style: solid;
    border-width: 10px;
    border-color: rgb(51, 51, 51);
}

.border1 {
    background-color: rgb(19, 19, 19);
    border-style: solid;
    border-width: 12px;
    border-color: rgb(51, 51, 51);
    border-radius: 22px;
}

.border2 {
    border-style: solid;
    border-width: 10px;
    border-color: rgb(252, 200, 33);
    border-radius: 10px;
    margin: -1px;
}

.logo {
    width: 85px;
    height: 85px;
}

.navbar-header {
    height: 110px;
}

.navbar-inverse {
    background: rgba(0, 0, 0, 0.5);
}

.nav li {
    font-family: Arvo, serif;
    font-size: 17px;
    margin-right: 35px;
    padding: 30px 0;
    margin: 0 24px;
}

.navbar-inverse .navbar-nav>li>a {
    color: rgba(252, 200, 33, 0.3);
}

.navbar-inverse .navbar-nav>li>a:hover {
    color: rgb(252, 200 ,33);
    border-bottom: 2px solid;
    padding-bottom: 42px;
    margin-bottom: -34px;
}

.jumbotron {
    background-color: transparent;
    color: rgba(252, 200, 33, 0.5);
/*    text-align: center;*/
    margin: 0;
    padding: 10px;
/*    letter-spacing: 2.5px;*/
}

.featured {
    color: rgb(252,200,33);
    margin: 30px;
}

.featured h1 {
    padding-top: 60px;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 1.2px;
}

.featured p {
    font-size: 1.2em
}

.featured .btn-default {
    font-weight: bold;
    color: rgb(252,200,33);
    background-color: rgba(252,200,33, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 25px;
    width: 180px;
    border-style: none;
}

@media (hover: hover) {
    .featured .btn-default:hover { 
        background-color: rgb(252, 200, 33);
        color: rgb(50, 50, 50);
        border-style: none;
    }
}

.featured .btn-default:active { 
        background-color: rgb(252, 200, 33);
        color: rgb(50, 50, 50);
        border-style: none;
    }

/*Center align elements in the trial section and add padding*/
.trial {
    text-align: center;
    padding: 20px 0 40px 0;
    color: rgb(252, 200, 33);
}

/*Set size of the images and add space between them*/
.trial img {
    width: 230px;
    height: 65px;
    margin: 20px;
}

.footer {
    background-color: rgba(252, 200, 33, .3);
    color: rgb(282, 230, 63);
    font-size: 18px;
    padding: 10px 0;
    margin-top: 50px;
}

/*Add styling for devices between 480px and 768px*/
@media (min-width: 480px) and (max-width: 768px) {
/*  
    .logo {
        width: 100px;
        height: 100px;
    }
*/
    
    .featured h1 {
        padding-top: 10px;
    }
    
    .featured p {
        font-size: 15px;
    }
    
    .featured {
        text-align: center;
    }
}

/*Add styling for devices under 480px*/
@media (max-width: 479px) {
    
    .logo {
        width: 75px;
        height: 75px;
    }
    
    .featured h1 {
        padding-top: 0px;
        font-size: 35px;
    }
    
    .featured p, .featured a {
        font-size: 13px;
    }
    
    .featured .btn-default {
        margin-right: 5px;
    }
    
    .featured {
        text-align: center;
    }
    
    .trial img {
        width: 115px;
        height: 32px;
        margin: 10px;
    }
}