body {
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.home-logo {
    width: 150px;
}

.header-navbar {
    background-color: #76a3ed !important; 
    border-bottom: 2px solid rgb(70, 122, 190);
}

.page {
    margin-top: 50px;
}

.card-story {
    width: 280px;
    margin: 20px;
}

.card-body-story {
    height: 180px;
}

.card-title-story {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-story-image {
    height: 180px;
}

.card-story-details {
    font-size: .8em;
}

.card-story-actions {
    position: absolute;
    width: 85%;
    bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.feed-container {
    position: relative;
    top: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.favorite-btn {
    border: none;
    cursor: pointer;
    background-color: transparent;   
}

.favorite-btn:focus {
    outline: none;
}

.content-story {
    background: white;
    position: relative;
    top: 60px;
    margin-bottom: 40px;
    border: solid 2px rgb(70, 122, 190);
}

.content-story img,
.content-story iframe {
    max-width: 80%;
    margin: auto;
    display: block;
}

.content-story-title {
    text-align: center;
    padding-top: 30px;
}

.content-story-main {
    padding: 30px;
    text-align: justify;
}

.search-form{
    background: #76a3ed;
    padding: 20px;
    margin-top: 25px;
    position: fixed;
    width: 100%;
    z-index: 10; 
    border-bottom: 2px solid rgb(70, 122, 190);  
}

.search-input {
    margin-left: 10px;
    width: 80% !important;
}

.search-checkbox {
    line-height: 35px;
}

.search-dropdown,
.search-dropdown:hover {
    background: #f8f9fa;
    color: black;
    width: 150px;
}