.advertisement-container {
    background-color: #000000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #fff;
}

.top-bar a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.heading {
    font-size: 35px;
    margin: 0;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.text p {
    color: #fff;
    text-align: justify;
    font-size: 20px;
}

.text img {
    float: left;
    width: 250px;
}
.text,.text2{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text1 p {
    color: #fff;
    margin-right: 10px;
    text-align: justify;
    font-size: 20px;
}

.text2 p {
    color: #fff;
    margin-right: 10px;
    text-align: justify;
    font-size: 20px;

}

.text2 img {
    float: right;
    width: 250px;
    margin: 10px 10px;
}

/*responsive*/
@media screen and (max-width: 1115px) {
    .top-bar a{
        font-size: 15px;
    }
    .heading{
        font-size: 25px;
    }
   .text p,.text1 p, .text2 p{
    font-size: 18px;
    text-align: left;
   }
}
@media screen and (max-width: 480px){
    .text p,.text1 p, .text2 p{
        text-align: left;
        margin: 0px 10px;
    }
    .text2 img,.text img{
        width: 200px;
        margin: 0px 50px;
    }
    .heading{
        font-size: 20px;
        text-align: center;
    }


}


