*{
    margin: 0px;
    padding: 5px ;
    box-sizing: border-box;
    font-weight: bold;
} 

.main{
    margin: 0px;
    border: 10px solid orangered;
}

.container{
    background-color: rgb(247, 249, 168);
    min-height: 100vh;
    border: 10px solid green;
}

.content{
    max-width: 1000px;
    margin: 0 auto; 
}

.image_container{
    margin-top: 5%;
    justify-content: center;
    overflow: hidden;
    display: flex;
    border: 5px solid black;
    margin-bottom: 15px;
}

.image_container, img{
    width: 100%;
    height: 100%;
    text-align: end;
} 

.top_section h2{
    font-size: 48px;
    text-align: center;
    margin-top: 10px;
    color:black;
}

.top_section h1{
    font-family: sans-serif;
    font-size: 48px;
    text-align: center;
    margin: 0px;
    color: red;
}

.top_section h4{
    font-size: 40px;
    text-align: center;
}

.about {
    margin-top: 30px;
}

.about h2{
    font-size: 50px;
    margin-bottom: 5px;
}

.about p{
    font-family: sans-serif;
    font-size: 25px;
    text-align: justify;
    padding: 30px;
    margin-bottom: 5px;
}

.slides{
    display: block;
    justify-items: center;
    height: 590px;
    width: 100%;
    border: 5px solid black;
    background-image: url("./images/dharmaratna.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100% ;
    animation-name: myanim;
    animation-duration: 20s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.facts{
    margin : 50px 0; 
}

.facts h2{
    font-size: 50px;
    margin-bottom: 20px;
}

.facts ul{
    margin-left: 50px;
}

.facts li{
    font-family: sans-serif;
    font-size: 25px;
    margin-bottom: 15px;
}

footer{
    margin: 50px 0;
}

footer p{
    font-size: 25px;
}

@keyframes myanim {
    0%{background-image: url(./images/dharmaratna.jpg);}
    14%{background-image: url(./images/Doctorate.jpg);}
    28%{background-image: url(./images/Modi_and_Devkinandanji.jpg);}
    42%{background-image: url(./images/UP_Ratna.jpg);}
    56%{background-image: url(./images/London_parliament.jpg);}
    71%{background-image: url(./images/With_AmitShah.jpg);}
    85%{background-image: url(./images/With_ShivrajSingh.jpg);}
    
}