<style>
    #Berita{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    #BeritaHead{
        width: 75%;
        padding: 2vw;
        background-color: azure;
        font-size: 3vw;
        text-align: center;
        border-radius: 25px;
        align-items: center;
        vertical-align: middle;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 6vw;
        margin-bottom: 4vw;
        box-shadow: 5px 10px 30px;
       
    }
    #MainContent{
        height: 100%;
        background-image: linear-gradient(to bottom, #ae1601 20%, #6d0e01 60%);
        background-repeat: no-repeat;
        transform: translateY(85px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #BeritaContent {
        width: 95%;
        border-radius: 25px;
        background-color: azure;
        box-shadow: 5px 10px 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 5vw;
        margin-left: auto;
        margin-right: auto;
        
    }
    .SubBerita {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 3%;
        margin-bottom: 3vw;
    }
    .BeritaPrev{
        height: 30vw;
        width: 25vw;
        background-color: antiquewhite;
        margin: 1vw;
        align-items:center ;
        box-shadow: 5px 10px 20px;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: 2vw;
        padding-top: 2vw;
    }

    .ImagePreview {
        height: 70%;
        width: 90%;
        background-color: 
        justify-content: center;
        align-items: center;
    }

    .ImagePreview img {
        height: 100%;
        width: 100%;
        border-radius: 20px;
    }

    .Title {
        width: 90%;
        margin: 1vw;
        padding: 1vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-family: bahnschrift;
        font-weight: 900;
        font-size: 20px;
    }
    .Desc{
        height: 30%;
        width: 90%;

        overflow: hidden;
        white-space: wrap;
        text-align: justify;
        font-family: bahnschrift;
    }

    .BeritaPrev:hover
    {
        opacity: 70%;
        cursor: pointer;
    }
    a {
        text-decoration: none;
        color: black;
    }
    #Footer {
        width: 100%;
    }
</style>