*{
    margin: 0;
    padding: 0 auto;
}
.header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #223a7a;
    color: #fff;
}
.nav{
    display: flex;
    flex-wrap: wrap;
    gap:50px;
    justify-content: center;
    align-items: center;
}
.header li{
    list-style-type: none;
    height:50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16pt;
    padding: 10px;
    border-radius: .5em;
    cursor: pointer;
}
.header li:hover{
    background-color: #fff;
    color:#223a7a;
}
a{
    text-decoration: none;
    color: #fff;
}
.main{
    min-height: 85vh;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    align-items:center;
}
.left{
    max-width: 50%;
    padding: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.left p{
    font-size: 14pt;
    text-align: justify;
}
.right img{
    width:40em;
}
.footer{
    position: fixed;
    width: 100%;
    bottom:0px;
    height:50px;
    background-color: #223a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.clr{
    color:#223a7a
}
.dey{
    float: left;
    height:200px;
    width:200px;
    border-radius: 5px;
    margin-right: 20px;
    border: 2px solid #808080;
}
@media(max-width:650px){
    .left{
        max-width:100%;
        padding: 40px;
    }
    .right img{
        width:20em;
    }
}