
* {
    box-sizing: border-box;
}
body, html {
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}


p {
    font-family: 'Poppins', sans-serif;
    margin: 25px 0 ;
    font-size: 23px;
    font-weight: 500;
}

.disp-f {
    display: flex;
    align-items: center;
    justify-content: center;
    }

button {
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    border-radius: 30px;
    background: #1A3779;
    color: white;
    border: 1px solid #1A3779;
    /* font-weight: bold; */
    /* font-size: 18px; */
}

.banner {
    height: 100%;
    position: relative;
}
section {height: 100%;}






/* ============================ Media queri ======================================== */



@media screen and (max-width: 700px) {
    .banner {display: block;     padding: 15px;}
    
}

