/***************** ALL PAGES ****************/
body {
    background-color:#f8f5ee;
    font-family: 'Roboto', sans-serif;
}

.main-content-container {
    padding-bottom: 100px;
}

select, .navbar-item, .card-footer-item {
    font-weight: 300;
}


/***************** NAVBAR ****************/
.navbar-item:hover, .navbar-link:hover, .navbar-burger:hover {
    background-color: rgb(250, 250, 250) !important;
    color: hsl(171, 100%, 41%) !important; 
}

.entertain-me {
    font-weight: 700;
    color: rgb(61, 61, 61);
}

/***************** HERO ****************/
.hero {
    margin-top: 20px;
    padding-top: 50px;
}

#dropdown-search-btn {
    background-color: hsl(171, 74%, 62%)
}

#dropdown-search-btn:hover {
    background-color: hsl(171, 100%, 41%)
}

hr {
    background-color: hsl(171, 100%, 41%);
    opacity: .15;
}

#media-type, #my-list-title, #homepage-title {
    font-weight: 900;
    color: rgb(61, 61, 61);
    font-size: 2.3rem;
}

#homepage-subtitle {
    font-weight: lighter;
}

.dropdown-label {
    font-weight: lighter;
}

#media-dropdown {
    max-width: 200px
}


/***************** BROWSE PAGE ****************/
#browse-content-container {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}


/***************** CARDS ****************/
a {
    color: rgb(61, 61, 61);
}

a:hover {
    color: white;
    font-weight: 400;
}

.card-footer-item:hover {
    color: white;
    background-color: hsl(171, 74%, 62%) ;
}

.card {
    margin-bottom: 17px;
}

/***************** MEDIA CARDS ****************/
.media-card {
    height: 300px;
}

.media-authorOrRating, .media-score, .media-genre {
    font-weight: lighter;
}

.media-genre {
    font-size: 14px;
}

.media-summary {
    font-family: 'Open Sans', sans-serif;
}

.media-summary, .card-footer-item {
    font-size: 12px !important;
}

.media-img {
    max-height: 200px;
} 

.fixed-bottom {
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.media-title {
    font-size: 16px !important;
    font-weight: 500;
}

.media-authorOrRating {
    font-size: 12px !important;
    margin-bottom: 0px !important;
    font-style: italic;
}

.is-scrollable {
    height: 200px;
    overflow-y: scroll;
}


/***************** CARDS MEDIA QUERY ****************/
@media only screen and (min-width: 400px) {
    .media-card {
        height: 425px;
    }
    .is-scrollable {
        height: 325px;
        overflow-y: scroll;
    }
    .media-img {
        max-height: 325px;
    } 
    .fixed-bottom {
        position: absolute;
        bottom: 0px;
        width: 100%;
    }
    .media-title {
        font-size: 24px !important;
    }

    .media-summary, .card-footer-item, .media-authorOrRating {
        font-size: 100% !important;
    }

    #media-type, #my-list-title, #homepage-title {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 515px) {
    #media-dropdown {
        max-width: 700px
    }
}


