body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

header {
    background-color: #F04B47;
    color: white;
}   

.breaking-news-section {
    padding: 0 30px 0 60px;
    display: flex;
}

#btext {
    width: 200px;
    font-size: 16px;
    text-transform: uppercase;
    color: black;
    font-weight: 600;
    margin: auto 0;
}

.breaking-news {
    padding: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.breaking-news:hover,
.social-icons i:hover {
    color: #e08b6c;
    cursor: pointer;
}

.bntime {
    display: inline-block;
    color: black;
    padding: 0 10px;
    font-size: 12px;
}

#popular-news {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 5%;
}

#popular-news h2 {
    margin: 0;
    padding: 5px;
    color: #fff;
}

#featured h2 {
    background-color: #404041;
}

#latest h2 {
    background-color: #F04B47;
}

#our-picks h2 {
    background-color: #404041;
}

#featured {
    flex: 2;
}

#latest,
#our-picks {
    flex: 1;
}

#popular-news img {
    width: 100%;
    filter: brightness(0.7);
    transition-duration: 500ms;
}

.carousel,
.news-container {
    position: relative;
}

.carousel-text {
    position: absolute;
    word-wrap: normal;
    bottom: 5px;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    padding: 0 10px;
    transition-duration: 500ms;
}

.news-container .carousel-text {
    font-size: 18px;
}

.carousel-date {
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

section {
    cursor: pointer;
}

.news-container:hover>.carousel-text {
    bottom: 10px;
}

.news-container:hover>img {
    filter: brightness(0.4);
}

.more-news {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 0 5%;
    justify-content: space-between;
    color: black;
}

.news-section {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 70%;
    justify-content: space-between;
}

.world h2 {
    background-color: #b2175b;
}

.sport h2 {
    background-color: #3c1b75;
}

.world h2,
.sport h2 {
    margin: 10px 0 0 0;
    padding: 0 10px;
}

.more-news img {
    width: 100%;
    height: 250px;
}

.world,
.sport {
    flex-basis: 45%;
}

aside {
    width: 90%;
    padding: 10px;
    flex-basis: 25%;
    border: 1px solid black;
    border-radius: 5px;
    margin: auto 0;
}

p {
    text-align: justify;
}

.recent-news {
    display: flex;
}

.recent-news img {
    width: 70px;
    height: 70px;
    margin: 10px;
}

.recent-news p {
    font-size: 14px;
    font-weight: bold;
    margin: auto;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    padding: 5%;
    justify-content: space-between;
}

.social-links section {
    flex-basis: 30%;
}

.social-icons-footer i {
    font-size: 37px;
    padding: 5px;
}

.instagram img {
    padding: 5px;
}

.footer-buttons {
    display: block;
    border: 1px solid #2196f3;
    color: #2196f3;
    font-size: 14px;
    font-weight: bolder;
    background-color: black;
    margin: 20px auto;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-buttons:hover {
    color: black;
    border: 1px solid black;
    background-color: #2196f3;
}



@media only screen and (max-width: 600px) {
    .breaking-news-section {
        padding: 10px;
        flex-wrap: wrap;
    }

    #featured {
        flex: auto;
    }

    .news-section,
    aside,
    .news-section article,
    .social-links section {
        flex-basis: 100%;
    }

    aside {
        border-width: 0;
    }

    .social-links section {
        margin-top: 20px;
    }

    .website-header img {
        width: 35px;
        height: 35px;
        padding: 5px;
    }

    .website-header h1 {
        font-size: 15px;
    }

    .social-icons {
        flex-basis: 100%;
    }

    .navbar-collapse {
        background-color: black;
        z-index: 16;
    }

}