.news{
    background-image: url('../img/news/news_title_bobi.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    width: 100%;
    height: 300px;
    justify-content: left;
    align-items: flex-end;
    display: flex;
    position: relative;
}

.news-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: left;
    color-scheme: light only;
}

.news-title p {
    padding-left: 20px;
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 80px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .news-title {
        width: 100%;
        display: flex;
        align-items: end;
        justify-content: center;
        text-align: center;
    }
}

.detail p{
    padding-left: 10px;
    font-size: 18px;
    margin: 0;
}