.home {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1000px;
    background: url('../../assets/images/start_kopi_2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    flex-wrap: wrap;
}

.home h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: 62px;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10% 20% 0 20%;
}


.home .button {
    background-color: #BE884C;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: white;
    font-size: 18px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    border-radius: 40px;
    text-align: center;
}

.home .button:hover {
    font-weight: 700;
}

.news {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
}


#news_section {
    width: 90%;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 120px;
}

.news_section_col {
    text-align: left;
    line-height: 30px;
    position: relative;
}

.news_section_col img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    margin-bottom: 20px;
}

.news_section_col h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.news_section_col p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.btn {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn a {
    background-color: #BE884C;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: white;
    font-size: 18px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    border-radius: 40px;
}

.btn button:hover {
    font-weight: 700;
}


@media (min-width: 1950px) {

    #news_section {
        max-width: 1920px;
    }
}

@media (max-width: 991px) {
    .home {
        min-height: 800px;  
    }

    .home h1 {
        font-size: 44px;
    }

    #news_section {
        flex-wrap: wrap;
        padding: 5%;
    }
}

@media (max-width: 768px) {
    .home {
        min-height: 700px;  
    }

    .home h1 {
        font-size: 36px;
        padding-top: 25%;
    } 

    #news_section {
        flex-wrap: wrap;
        padding: 0 5%;
    }
    
}

@media (max-width: 450px) {
    .home {
        min-height: 600px;  
    }

    .home h1 {
        font-size: 34px;
        padding-top: 30%;
    }

    #news_section {
        flex-wrap: wrap;
        padding: 0 5%;
    }
}