/* Add a cover background picture  for the featured part with a fixed  height: */
.jumbotron {
    background: url(https://freenaturestock.s3.amazonaws.com/166.jpg);
    background-size: 100% 100%;
    height: 600px;
}
/* Set the size of the logo: */
.logo {
    height: 75px;
    width: 75px;
}
.featured {
/*  Set text color of featured content: */
    color: white;
/*  Create space between the title and the logo: */
    padding-top: 60px;
}
.featured p {
    font-size: 20px;
}
/* Style links: */
.featured .btn-default {
    font-weight: bold;
    color: white;
    background-color: rgba(145, 82, 58, 0.5);
    border: 1px solid white;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 15px;
    width: 175px;
}
.featured .btn-default:hover {
    background-color: rgba(145, 82, 58);
    border: 1px solid grey;
}
/* Center align elements in the trial section and add padding: */
.trial {
    text-align: center;
    padding: 20px 0 40px 0;
    color: black;
}
/* Set size of images and add space between them: */
.trial img {
    height: 70px;
    width: 200px;
    margin: 20px;
}
/* Style footer: */
.footer {
    background-color: #eee;
    font-size: 15px;
    padding: 10px 0;
}
/* Add styling for devices between 480 px and 768px: */
@media (min-width: 480px) and (max-width: 768px) {
    .jumbotron {
        height: 410px;
        margin: 0;
    }
    .logo {
        height: 50px;
        width: 50px;
    }
    .featured {
        padding-top: 30px;
        text-align: center;
    }
    .featured p {
        font-size: 17px;
    }
    .footer {
    font-size: 13px;
    padding: 7px 0;
    text-align: center;
}
}
/* Add styling for devices under 480: */
@media (max-width: 480px) {
    .jumbotron {
        height: 410px;
        margin: 0;
    }
    .logo {
        height: 40px;
        width: 40px;
    }
    .featured {
        padding-top: 10px;
        text-align: center;
    }
    .featured p, .featured a {
        font-size: 13px;
    }
    .trial img {
        height: 35px;
        width: 100px;
        margin: 10px;
    }
    .footer {
    font-size: 11px;
    padding: 5px 0;
        text-align: center;
}
}