.newsContainer{
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 30px;
    /* border-left: 5px solid rgb(105, 10, 139);
    border-right: 5px solid rgb(105, 10, 139);
    border-top: 5px solid rgb(105, 10, 139); */
    border-radius: 30px;
    height: 300px;

    background-color: rgb(255, 255, 255);
    /* width: 50%; */
}

/* Vertical line */
.vl {
    margin: 0 10px 0 10px;
    border-left: 5px solid rgb(42, 25, 58);
    height: 150px;
}

.newSlides{
    display: none;
    padding: 80px;
    text-align: center;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.time{
    width: 10%;
    margin-right: 40px;
    /* padding: 0; */
}

.newSlides a{
    text-decoration: none;
    color: rgb(0, 0, 0);

    width: 80%;
}

.newSlides a:hover{
    color: gray;
}

.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev{
    position: absolute;
    left: 0;
}

.next{
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover{
    background-color: rgba(0,0,0,0.8);
    color: white;
}

.dotContainer{
    text-align: center;
    padding: 20px 0 20px 0;
    /* background: rgba(37, 35, 35, 0.39); */

    /* background-color: lightblue; */
    /* border: 5px solid rgb(105, 10, 139); */
}

.dot{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover{
    background-color: #717171;
}

.time{
    color: gray;
}

@media(max-width: 1100px){
    .newsContainer{
        overflow: scroll;
    }
}

@media(max-width: 600px){
    .newsContainer{
        font-size: 20px;
        height: 150px;
    }

    .vl{
        height: 75px;
    }

    .dotContainer{
        padding: 10px 0 10px 0;
    }

    .newSlides{
        padding: 50px;
        /* width: 100%; */
    }
}